To activate the button, you need to
add some ActionScript to it.
Click on the button and then press F9.
Enter this:
on (release) {
_root.shieldlabel._visible = true;
_root.spearlabel._visible = true;
}
If you have added other labels for other hotspots, include the
extra instructions inside the curly brackets.
In (fairly) plain language, it means -
If the user clicks on the button and then lets go, do the instructions
inside the curly brackets i.e. make the labels visible.
Test the movie and check that the button changes colour in response
to the mouse and that the labels appear when you click and release. |