説明
						特定のプラグインが読み込まれたかどうか調べるにはplugInsのloadedプロパティで調べることができます。trueであれば読み込まれた、falseであれば読み込まれていない事になります。
				
				
 
				
						
						
							console.show();
						console.clear();
						checkName = "WebLink";
						flag = false;
						for (i=0;  i<app.plugIns.length; i++)
						{
						    if (app.plugIns[i].name == checkName)
						    {
						        if (app.plugIns[i].loaded) flag = true;
						    }
						}
						if (flag) console.println("OK"); else console.println("NG");