I just wanna add an image from my library on the stage and have an event listener on it so when i click on it, it will do something. imgFromMyLib is already set to the image i want from my library. Please help. What is the easiest way to do this ?
import flash.display.Bitmap;
import flash.events.*;
import flash.display.Sprite;
function pwned(evt:MouseEvent):void
{
trace ("a");
}
var myImg:imgFromMyLib = new imgFromMyLib();
var myBitmap:Bitmap = new Bitmap(myImg);
myBitmap.addEventListener(MouseEvent.CLICK, pwned);
addChild(myBitmap);