Beginner, Simple - Needed Mouse_Over to Pause Animation
I'm trying to create a slideshow - a set of Still Images that continuously slide by with links to corresponding pages. I want this slideshow to stop sliding when MOUSE_OVERd'.
Here's an example of what I wish to create:
http://www.beatport.com/ --- Slideshow is top left of page body - called - "NEW ON BEATPORT"
- Notice how when you rollover the slideshow - it stops, and pauses while you hover over it.
I've managed to created the keyframed slides, along with corresponding hotspots.
I need help with AS to pause the keyframe animated slides when rolled over. Of course, I want the slides to begin sliding again when MOUSE_OUT.....
I have an Actions layer on my timeline.....
- This is my simple attempt of AS to pause the slideshow:
---------------------------------------------------------------------
slides.addEventListener.(MouseEvent.MOUSE_OVER);{
slides.function = stop
}
slides.addEventListener.(MouseEvent.MOUSE_OUT);{
slides.function = play
}
Thank you so much for any help you can offer, I truly appreaciate it !!!