Skip to main content
Known Participant
October 7, 2008
Question

making a movie clip an invisible button

  • October 7, 2008
  • 2 replies
  • 381 views
HI
Does any one know how to make a movieclip invisible so I can use it as an invisible button?
This topic has been closed for replies.

2 replies

October 8, 2008
Yes "evt" is the variable name referring to the Event object that gets passed in, you can make it whatever you want, though... actually, now that you mention it, Adobe says you 'should' always make it "event", for what it's worth. :)
October 7, 2008
mc.alpha = 0
mc.buttonMode = true;
mc.addEventListener('click',clickHandler);
function clickHandler(evt){
...
}
Known Participant
October 8, 2008
brilliant
" evt" is just short for event right?
thanks alot
mt