PDA

View Full Version : a problem to call the movieclip


kazuma
03-23-2005, 03:04 AM
hi, i have a problem to call the movieclip and play the specific frame.

actually i have a volume level bar & volume slider. when the user click n drag the volume slider, the volume level bar will follow the slider play (i mean to call the volumeLevel and play the clip).

for example, the volume slider value is 87 after the user clicked and draged.
formula:
87/10
the movieclip should play at frame 8.

the concept is like that but i tried so many times and still cant make it. can some1 pls help me to solve this problem?

plssssss...

radicalFish
03-23-2005, 06:54 PM
Salut

you try the play a Clip with the num variable, but that isn t even set...

try this, that should work...

var x = Math.ceil(mySlider.ratio/10);
volumeLevel.gotoAndPlay(x)


grettings
r.fish

hi, i have a problem to call the movieclip and play the specific frame.

actually i have a volume level bar & volume slider. when the user click n drag the volume slider, the volume level bar will follow the slider play (i mean to call the volumeLevel and play the clip).

for example, the volume slider value is 87 after the user clicked and draged.
formula:
87/10
the movieclip should play at frame 8.

the concept is like that but i tried so many times and still cant make it. can some1 pls help me to solve this problem?

plssssss...