Posts

Showing posts from December, 2009

Loading Raptivity SWF files with Adobe Connect

One of the folks on Raptivity Community asked how to load a Raptivity SWF file in Adobe Connect Pro . Following post shows how to do that. I have not attached any files and please don't ask me to attach any file. Just follow the steps and everything should be taken care of. 1. Upload your SWF file to any web server. One of the free servers can be Google Sites. Copy the complete path of your SWF. Lets say the path is http://yourserver/yourswfToLoad.swf. 2. Create a SWF file. (Any blank swf file) 3. Now load your movie inside this new SWF you just created by inserting the following script on Frame 1 of your newly created SWF. //Create an empty MovieClip and use the MovieClipLoader to load your SWFinto it. var container:MovieClip = createEmptyMovieClip("container", getNextHighestDepth()); container._lockroot = true; var mcLoader:MovieClipLoader = new MovieClipLoader(); mcLoader.addListener(this); mcLoader.loadClip("http://yourserver/yourswfToLoad.swf"