OK, basically I want to have an image and in certain areas when I roll over them I want a box or bubble to appear with content.
The box should be semi-transparent and fade in and out when the cursor is moved away.
Haven't got a clue how to do this... anyone able to help?
MartinWeb
2:58 pm on Aug 29, 2009 (gmt 0)
I would do this with a movie clip with each box or bubble. On the first frame, I would have a stop(); and an invisible button. The invisible button would have the following action script on it: on(rollOver){ nextFrame(); } On the second frame I would have a stop action, and your content. There would be another invisible button over the content, and the place where you had your original button that had the following action script.
on(rollOver){ play(); }
On the next frames, you would have the content fade out. It should then automatically loop back to the first frame.