As Imthwee said, please try to find tutorials too.
Anyway Please follow this to get your work done:
1) Just create an empty movie clip with a instance name (
emptyMC)
2) Place your jpeg file in the same location
use this code in timeline:
const IMAGE_URL:String = "followme.png";
var ldr:Loader = new Loader();
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, ldr_complete);
ldr.load(new URLRequest(IMAGE_URL));
function ldr_complete(evt:Event):void
{
emptyMC.addChild(ldr);
}
Hope this helps!
Note: Don't worry about the size of the movie clip, Just an empty movie clip thats it!
Reputation Points: 167
Solved Threads: 239
Nearly a Posting Virtuoso
Offline 1,445 posts
since May 2008