Use Slider value to go to frame label?
Hello! here is my final problem with my paper doll game, I have added sliders for a space saving selection of many changeable options. I now need to connect the options in the slider with the frames on the changeable movie clip. I looked over it and I just can't do it given that the dynamic text does not want to update properly.... Here is the code for one of my 4 sliders, (each has it's own frame)
import fl.events.SliderEvent;
femvarry.text = "Female Vairations:" + slide1.value
slide1.value = 0;
slide1.maximum = 5;
slide1.minimum = 0;
slide1.addEventListener (SliderEvent.CHANGE, Slide1event)
function Slide1event (event:SliderEvent):void{
femvarry.text = "Female Vairations: " + event.target.value;
}
The easy thing is the frames in the movie clip I want to link have all been labeled, "Female Vairations: 0, 1, 2 ect" So I just need to find a way to get the code to go to each label. The only way I know is a if femvarry.text = # gotoAndStop # in the movie clip I need. (of corse not that exactly....) So that and find out why the dynamic text, femvarry isn't working...
