Monster Racer Rush
Select between 5 monster racers, upgrade your monster skill and win the competition!
4.23 / 5.00 3,881 ViewsBuild and Base
Build most powerful forces, unleash hordes of monster and control your soldiers!
3.93 / 5.00 4,634 Viewshow can I upload an image from my computer and add it into my MovieClip which should contain the image I have selected?
I know that:
uploadBtn.addEventListener(MouseEvent.CLICK,onClick);
function onClick(e:MouseEvent){
//What should I add here to trigger the upload button
} At 1/3/14 03:30 PM, A-Genius wrote: //What should I add here to trigger the upload button
}
Use a FileReference and Loader. fileRef.browse() to find the image, fileRef.load() to get the data, then loader.loadBytes(fileRef data). The docs have examples of everything.