ElectroServer載入外掛
http://www.es-wiki.com/index.php?title=Hello_World_Plugin_Tutorial
//Use the settings in the Extension.xml plugin here
var multiplyPlugin:Plugin = new Plugin();
//Use the extension from the xml file
multiplyPlugin.setExtensionName( "HelloWorldExtension" );
//Use the handle from the xml file
multiplyPlugin.setPluginHandle( "HelloWorldPlugin" );
//This can be any name you wish to give it, but normally if there is only one
//of a given plugin in an extension, best to use the handle name
multiplyPlugin.setPluginName( "HelloWorldPlugin" );
//Finally, attach this plugin to the CreateRoomRequest (you could have more than one, only one here though)
crr.setPlugins( [multiplyPlugin] );