all groups > flash actionscript > july 2005 >
You're in the

flash actionscript

group:

Invoking Event Handlers


Re: Invoking Event Handlers Dave Mennenoh
7/25/2005 8:19:03 PM
flash actionscript:
You can call the clips onRelease function like any other function.

clip1.onRelease = function(){
trace("release");
}

clip2.onRelease = function(){
_root.clip1.onRelease();
}


--
Dave -
www.blurredistinction.com/director
www.macromedia.com/go/team

Invoking Event Handlers craigkaminsky
7/25/2005 10:25:14 PM
I'm wondering if there is a way to manually (i.e., progamatically) invoke an
event handler. I wanted to invoke an onRelease handler for a specific movie
clip in the swf after the movie has totally loaded. Is this even possible?

Thanks very much!
Craig
AddThis Social Bookmark Button