You can download the files buildingDuckHunt here. File 0 contains the artwork. File 1 starts adds the duck to the stage with ActionScript. [as3] //imports import flash.display.MovieClip; //variables var duck:MovieClip=new Duck(); addChild(duck); duck.x=stage.stageWidth*0.5; duck.y=stage.stageHeight*0.5; //functions [/as3] File 2 adds the remainder of the artwork to the stage. [as3] //imports import flash.display.MovieClip; //variables var duck:MovieClip; var […]