Does anyone have the link to the design company that did ‘Gary the Rat’ and some of the Disney stuff? There is a cool animation on their page with stick figure hands juggling the ‘enter’ button… I can’t remember the name of the site…
on that site they have this sub navigation for the games and when you role over it it makes a sound then if you do it again it makes a different sound and remembers what sound it made last so when you click another button it makes the sound that you should have herd next on the other button?
if you got what i was talking about. how did they do that?
i don’t see where ur talking about, but if i understand correctly, it’s a variable that changes according to the sound, and if then statements for the variable
ie
if(_root.sound == 1) {
_root.firstsound.play();
} else if {
_root.sound == 2) {
_root.secondsound.play();
} else if {
_root.sound ==3) {
_root.thirdsound.play();
}
//and so on and so forth
}