Scope problem - Controling a movieclip inside a button with actionscript - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:34:02Zhttp://stackoverflow.com/feeds/question/197845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197845/scope-problem-controling-a-movieclip-inside-a-button-with-actionscript1Scope problem - Controling a movieclip inside a button with actionscriptJim Robert2008-10-13T14:52:10Z2008-10-14T03:58:53Z
<p>Hello everyone,</p>
<p>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</p>
<p>in the actions for the button:</p>
<pre><code>on (release) {
this.button_name.movieclip_name._alpha = 0;
trace(this.button_name.movieclip_name);
}
</code></pre>
<p>and the trace returns <strong><em>undefined</em></strong>... 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.</p>
<p>Thanks, Jim :)</p>
http://stackoverflow.com/questions/197845/scope-problem-controling-a-movieclip-inside-a-button-with-actionscript/198043#1980430Answer by Jim Robert for Scope problem - Controling a movieclip inside a button with actionscriptJim Robert2008-10-13T15:45:15Z2008-10-13T15:45:15Z<p>found: <a href="http://www.actionscript.org/forums/archive/index.php3/t-99018.html" rel="nofollow">this</a>...</p>
<p>They talk about some 'other way' (other than using button symbols?) Maybe you can use a movieclip symbol as a button?</p>
http://stackoverflow.com/questions/197845/scope-problem-controling-a-movieclip-inside-a-button-with-actionscript/199979#1999791Answer by fenomas for Scope problem - Controling a movieclip inside a button with actionscriptfenomas2008-10-14T03:58:53Z2008-10-14T03:58:53Z<p>For AS2, it's not a good idea to put MovieClips inside buttons. The easiest and most direct approach is to restructure things so that your button and the movieclip you had inside it are at the same level, perhaps within a new MC created to contain them. You should think of the Button symbol as a thing that only provides a clickable hit state, but is not a container for other things.</p>
<p>As for your followup, yep, you can indeed use MovieClips as buttons. If you give your MC functions to handle button-like events (onPress, onRelease, onReleaseOutside and so on), those functions will get called just like on a Button. You can also control the finer details - see the docs on MovieClip.hitArea and MovieClip.useHandCursor.</p>
<p>One thing I've done frequently is to create frames in the MC called "show" and "hide", followed by short animations and a "stop()" command, and then done something like this:</p>
<pre><code>myMC.onRollOver = function() { gotoAndPlay("show"); }
myMC.onRollOut = myMC.onReleaseOutside = function() { gotoAndPlay("hide"); }
myMC.onRelease = function() {
// do something....
}
</code></pre>