May 20, 2004 #1 law78 Technical User Apr 23, 2004 78 GB Hi people, I was wondering if it is possible to reposition a movie clip once it has been moved around screen via the start drag command Thanks Lee
Hi people, I was wondering if it is possible to reposition a movie clip once it has been moved around screen via the start drag command Thanks Lee
May 20, 2004 #2 pixl8r Programmer Aug 9, 2001 1,487 US Yes it's possible to move the clip anywhere you want to on the stage. Here's an example for a "reset button:" Code: on(release){ _root.clipName._x = 25; _root.clipName._y = 25; } That would place the registration point of the target movie clip (clipName) at x:25 y:25. Hope it helps. Wow JT that almost looked like you knew what you were doing! Upvote 0 Downvote
Yes it's possible to move the clip anywhere you want to on the stage. Here's an example for a "reset button:" Code: on(release){ _root.clipName._x = 25; _root.clipName._y = 25; } That would place the registration point of the target movie clip (clipName) at x:25 y:25. Hope it helps. Wow JT that almost looked like you knew what you were doing!
May 20, 2004 Thread starter #3 law78 Technical User Apr 23, 2004 78 GB Works great... Thanks Upvote 0 Downvote