show/hide this revision's text 2 more tags
show/hide this revision's text 1

Scope problem - Controling a movieclip inside a button with actionscript

Hello everyone,

I'm trying to show/hide a movieclip (or graphic) symbol that is on a layer of a button symbol using actionscript 2. Here's what I tried

in the actions for the button:

on (release) {
 this.button_name.movieclip_name._alpha = 0;
 trace(this.button_name.movieclip_name);
}

and the trace returns undefined... so I think I've got a problem understanding how to address the child element. However I am not a flash programmer... just hacking on it at the moment for a side project, so I probably just don't understand how it works.

Thanks, Jim :)