Hi
I want some help to achieve some effect like in this flash movie:
http://www.uiowa.edu/~acadtech/phonetics/anatomy.htm
When the user click on one of the left buttons the target appears/highlights/shows (something) in the main and vice versa. I don’t know what it calls!!!
I’m using an array for my left menu in my movie, would this complicate the using of the effect above?
Would really appreciate it if someone could help me with
this.
I can think of a few ways to do this. The easiest would be to make a movieClip and place it where you want it to appar upon rollOver. Then give that movieClip an instance name like ‘show’, then apply this code to the movieClip:
[AS]
onClipEvent(load){
this._visible = false;
}
[/AS]
That way it will not show when you load the movie. Then on your button on the left, for that one movieClip, you can put this:
[AS]
on(rollOver){
_root.show._visible = true;
}
on(rollOut){
_root.show._visible = false;
}
[/AS]
That should work for you. as using an array for your left menu in your movie - I’m not sure what you mean, but as long as there are buttons or movieClips, you can use this method.
Here is the .fla and the sounds!
I tried to draw a line between the 2 objects but I don’t know how??
Could u plz try first with the line version!
Thanks a lot!!!