actionScripting HELP PLEASE!!!
actionScripting HELP PLEASE!!!
Out of context: Reply #1
- Started
- Last post
- 1 Response
- ctrlRmB0
before you make the first change just store the original position in the clip
yourClip.origX=_x
yourClip.origY=_ythen send it to the new position...
so your return function could be:
function returnToPosition(){
myClip._x = myClip.origX
myClip._y = myClip.origY
}...hope that helps