flash.display.Loader
flash.display.Loader
Out of context: Reply #2
- Started
- Last post
- 10 Responses
- stupidresponse0
import flash.display.*;
import flash.net.URLRequest;
var ldr:Loader = new Loader();
var url:String = "url";
var urlReq:URLRequest = new URLRequest(url);
ldr.load(urlReq);
addChild(ldr);- beat merson
- import flash.display.*;
the * indicates the entire class is being imported? -->PonyBoy - excuse my ignorance again..
I was wondering if there's a direct object in that class you can import -->PonyBoy - in place of that *.
meaning:
import flash.display.someth...PonyBoy - argh... so hard to get a lengthy Q out on here... feel free to completely ignore me. ;)PonyBoy
- cheers. it works!!widget