actionscript question
actionscript question
- Started
- Last post
- 4 Responses
- epikore
Can someone convert this from as3 to as2?
stage.addEventListener(Event.ENT... scroller);
function scroller(event:Event):void
{
bigbob.y = -box_mc.y;
}
- thatblokemike0
_root.onEnterFrame = function():Void
{
bigbob._y = -box_mc._y;
}
- epikore0
that works, thanks