I am making a little flash feature for work, its not anything too fancy.
Its basically to be a map with little red spots, you can hover over them and it shows the 4 locations where we have offices.
The problem is this:
I have the rollover text showing up when you land on the red spot, but on the left side (where the text description is) if you move the mouse in that area, all the other text shows up, as its linked to the button.
Can anyone help me separate this or give me advice on how to change it?
I am pretty bad at Flash.
I have not looked at your files yet, just the .swf. What I would do is create a movieclip leaving the 1st frame empty with a stop(); action in it, then place each text description on a different keyframe starting at frame 2 also adding a stop(); action in each. Then for the button(s) I would do a descriptionClip.gotoAndPlay(framenumber); changing frame number to the corresponding frame for each button. descriptionClip is the instance name you give to that mc.
It’s a movieclip with 2 layers, a text layer and an actions layer. The 1st frame is empty so it will be hidden until the user rolls over a button. Each keyframe of the actions layer has a stop(); action in it so it does not keep playing, then each keyframe of the text layer has a description in it starting at frame 2. Frame 2 is for the Chicago description and frame 3 is for Ireland. Then the 3rd, 4th and 5th…(they are not there yet) would be for the next descriptions. Then the buttons just tell it to go to the frame number for the corresponding descriptions.