Hi,
Alloy it would beif you were declaring the variable outside of the movieclip then it would be referenced using _root.fNum or _parent.fNumPHP Code:onClipEvent (load)
{
var fNum:Number = _root.Target._x;
}
onClipEvent (enterFrame)
{
fNum = _root.Target._x;
this.gotoAndStop(fNum);
}





Reply With Quote