nInterval = setInterval(tweenClip, 50);

should be:

nInterval = setInterval("tweenClip", 50);




Stephen Ford wrote:
I have a setInterval call that is only firing once.
Here is the part of my class where it's occuring: -------------------------------------------------------------------------------------------
public function repositionClip():Void{     nWidth = Math.round(Stage.width);
     nHeight = Math.round(Stage.height);
     nMidX = nStageWidth/2;
     nMidY = nStageHeight/2;
mcMain._x = nMidX; mcMain._y = nMidY; nInterval = setInterval(tweenClip, 50);
}
public static function tweenClip():Void{ trace("function called: tweenClip()");}
-------------------------------------------------------------------------------------------
Can anyone advise as to what is happening here ? Thanks,
Stephen._______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to