View Full Version : Please help me!!!
vlad drac
01-01-2003, 02:35 PM
I'm trying to put a slider in a movie that as the slider moves to each mark, there is a corresponding picture that comes up. I hope someone can understand where I am coming from. Please help me!
emergency_pants
01-03-2003, 01:00 PM
vlad...
take the _x position of your slider and use that value to make a picture tween movieclip go to a frame.
For example, if the slider has a _x value of 150, tell the picture movieClip to go to frame 150.
Then, whevever the slider goes, the picture movieclip goes too.
Use enterFrame or mouseEvent scripts to move the slider.
Use the "_root.slider._x" value to get the position of the slider. Use a script like this and attach it to your picture movieclip
onClipEvent(enterFrame) {
this.gotoAndStop(_root.slider._x);
}
Hope you figure it out. There are several ways to achieve what you want.
Simon.
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.