I am incredibly new to Actionscript 3. I have Thanksgiving off and I thought I would try making a game in flash.
My problem is that I have a bitmap image that is being added to the scene dynamically and it is covering up a button. I initialized and loaded the image like this:
var myBitmapDataObject:bedroomCellPhoneD = new bedroomCellPhoneD(100, 100);
var myImage:Bitmap = new Bitmap(myBitmapDataObject);
addChild(myImage);
Then a few frames after this image is loaded I have a button on the scene, but the button is covered. How do I bring the button to the front?