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 locationuse 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!
Thank you so much, I would buy you a virtual pint but I don't think that is possible =P