Change MovieClip position : MovieClip « Development « Flash / Flex / ActionScript






Change MovieClip position

 

package {
     
     import flash.display.MovieClip;
     import flash.events.Event;
     
     public class Motion extends MovieClip {
          
          public function Motion() {
          }
          public function init(xVal:Number,yVal:Number):void {
               this.x = xVal;
               this.y = yVal;
               addEventListener(Event.ENTER_FRAME, update);
          }
          private function updatePosition():void {
               this.x++;
               this.y++;
          }
          private function update(evtObj:Event):void {
               this.updatePosition();
          }
          
     }
}

        








Related examples in the same category

1.extends MovieClip
2.Add frame event listener to MovieClip
3.Variable and Function Definitions in Frame Scripts
4.Working with the MovieClip: Using stop() and gotoAndPlay()