Advertisement
Advertisement
| 05.27.2008 at 01:48PM PDT, ID: 23436309 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
next_btn.addEventListener(MouseEvent.CLICK, nextFunction);
function nextFunction(event:MouseEvent):void
{
removeChild(pictLdr); // Does not work
}
function loadImage(event:Event):void
{
var pictLdr:Loader = new Loader();
var pictURLReq:URLRequest = new URLRequest(pictURL);
pictLdr.load(pictURLReq);
addChild(pictLdr);
}
|