satheesh
New Member
- Messages
- 883
- Reaction score
- 0
- Points
- 0
Load a Image in Flash CS3:
1.Create a new Flash CS3 Document.
2.Select the first frame and press F9.
Copy and Pate it.
Ex:
var ldr:Loader = new Loader();
var url:String = "Image File name";
var urlReq:URLRequest = new URLRequest(url);
ldr.load(urlReq);
addChild(ldr);
Note:Your image file in the same dir.
1.Create a new Flash CS3 Document.
2.Select the first frame and press F9.
Copy and Pate it.
Ex:
var ldr:Loader = new Loader();
var url:String = "Image File name";
var urlReq:URLRequest = new URLRequest(url);
ldr.load(urlReq);
addChild(ldr);
Note:Your image file in the same dir.