Easy question

I made a random movement MC and it works fine. Now to my question: is it only buttons you can click on so things happens? I want it to work like this: When I click on the random MC i want the symbol to stay in the left corner… does it work?

// Micke :q:

you can put a button inside the movieclip but you can also use this code:
_root.mymc.onMouseDown {
do this… do that…
}
That shoudl work! But you have to make a code like that for each mc! Replace mymc with the movieclip you want to be clickable.