# Dumb AS question :| \[MX\]

**URL:** https://forum.kirupa.com/t/dumb-as-question-mx/100473
**Category:** Uncategorized
**Created:** [January 29, 2004, 11:17pm UTC](https://forum.kirupa.com/t/dumb-as-question-mx/100473 "2004-01-29T23:17:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Elbudster](https://avatars.discourse-cdn.com/v4/letter/e/a698b9/32.png) [@Elbudster](https://forum.kirupa.com/u/Elbudster)
#### Post date: [January 29, 2004, 11:17pm UTC](https://forum.kirupa.com/t/dumb-as-question-mx/100473/1 "2004-01-29T23:17:06Z")

</div>

Ok, I feel dumb ;( I have 2 movie Clips. On the first mc I have some code like this…

[AS]  
onClipEvent (load) {  
pick = 1;  
}  
on (mouseDown) {  
pick = 0;  
}  
[/AS]

And on the second mc I am trying to use use the pick variable in an if statement and I cannot get it to find that variable. I cannot even trace that variable from the 2nd mc… I’ve tried tracing like:

trace(pick);  
trace(\_root.pick);  
trace(\_level0.pick);

And everytime it just comes up with undefined ☹ Anyone know why :d:
