Hi

I'm new to flash and I need some help translating a as3 code to as2. I have a scen were I have a movieclip with a classictween animation which is controlled by a Numeric Stepper. But I need now to convert the scen from as3 to as2.

I tried searching online but all I could fine were code for as3.

This is the code I'm using right now.

Code:
import fl.controls.NumericStepper;

NUMERICSTEPPER1.addEventListener(Event.CHANGE,NUMERICSTEPPER1FUNCTION);

function NUMERICSTEPPER1FUNCTION(event:Event):void 
{ 
var gotoFrame = NUMERICSTEPPER1.value;	
pumpa.gotoAndStop(gotoFrame);
}