I'm having an issue with a slider I'm making inside of Animate.
I have 3 images outside of my symbols and 3 symbols with my text fade in's/out's and color transitions within them.
I have the desired effects I want and the slider is playing smoothly while looping after completition using sym.play(0).
I recently added navigation to the slider with three circles to represent each slide.
I'm trying to make each circle clickable to playback the slide (text and image) and then continue playing the slideshow.
i.e. user clicks circle one while on slide 2 and it fade's in to show slide 1 then continues to play through the slideshow then loops again.
The problem I'm having is when the user clicks on circle one it displays the correct image and symbol playback but does not continue throughout the slideshow with the rest of the symbols playing (images still play and loop but the text never plays).
This is what I have for when a user clicks on circle 2:
sym.$("TextSlide3").hide();
sym.$("TextSlide1").hide();
sym.play(7250);
sym.play("TextSlide2");
It displays the text but not at the right time and it doesn't disappear until slide 2 comes back onto screen.
I hope this isn't too vague but I'll keep an eye on this post in case I need more details.