Hi, im having problems getting some as3 generated (not drawn on stage) movie clips moving across the screen.
Can you guys have a critique below at this code. thanks.
package {
import flash.geom.ColorTransform;
import flash.display.MovieClip;
import fl.motion.Color;
import flash.display.*;
import flash.events.Event;
public dynamic class Main extends MovieClip
{
public function Main() {
var myMC:MovieClip = new MovieClip();
addChild(myMC);
var _stage:Stage=myMC.stage;
var starBackground:Stars = new Stars(_stage); // add a bitmap background
//Add a ball of type movieclip
var mass1:Ball = new Ball(100,12,colorYellow,100,250,4,2,_stage,myMC);
mass1.name = "m1";
_stage.addChild(mass1);
addEventListener(Event.ENTER_FRAME, moveobj);
}
public function moveobj(event:Event) {
**mass1.x+=1;** //this is where the error code comes from..
}}}