Hey all, i have a movieclip with an onRelease event. Is there anyway i can trigger this event in code? without clicking the movie clip?
A:
if you set onRelease to a function then you can just call that function on the MovieClip
mc.onRelease = function(){
trace('mc.onRelease called');
}
mc.onRelease();
danjp
2010-08-17 19:02:26