Here is a class that you can use to load swf’s into an object that you can display or do whatever you’d like with:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| // SWFLoader Class by Rick Nuthman
// 2.10.10
//
// Usage:
/*
var mySWF:Object;
mySWF = SWFLoader.create("urlToSWF.swf", 0,0);
mySWF.dispatcher.addEventListener("ready", displaySwf);
function displaySwf(event:Event){
addChild(mySWF.swf);
}
*/
package com.frigidfish{
import flash.display.Sprite;
import flash.display.Loader;
import flash.events.Event;
import flash.net.URLRequest;
import flash.events.EventDispatcher
public class SWFLoader{
public function SWFLoader() {
}
public static function create(url, x=0,y=0):Object {
var loaded:Event = new Event("ready");
var dispatcher:EventDispatcher = new EventDispatcher();
var swf:Sprite = new Sprite ;
var mLoader:Loader = new Loader ;
var obj:Object = new Object;
obj.swf = swf;
obj.dispatcher = dispatcher;
swf.x = x;
swf.y = y;
var mRequest:URLRequest = new URLRequest(url);
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,swfLoaded);
mLoader.load(mRequest);
function swfLoaded(event:Event) {
var target = event.currentTarget.content;
swf.addChild(target);
dispatcher.dispatchEvent(loaded);
}
return obj;
}
}
} |
You don’t need to make an instance of the class, just use the static function ‘create’ like so:
This is a preview of
Load SWF via Actionscript 3 with this class
.
Read the full post (102 words, estimated 24 secs reading time)