--- In [email protected], "fuad_kamal" <[EMAIL PROTECTED]> wrote: > > There's a doc out on AS2 -> AS3 conversions: > http://livedocs.macromedia.com/flex/2/langref/migration.html > > For the AS2 onReleaseOutside() EventHandler it says this is now > handlded by a mouseUp event after a call to > flash.display.InteractiveObject.setCapture(). However, I don't find > any setCapture() method or inherited method on > InteractiveObject...anyone have a clue? >
setCapture() was a method in an early pre-release version of AS3 that no longer exists. The intention was to provide a way to block events. The docs should not mention it. You can use the mouseUp event as a substitute for onReleaseOutside(), and event.stopPropogation() if you neeed to stop an event from firing. Dave Jacowitz Technical Writer Flash team ------------------------ Yahoo! Groups Sponsor --------------------~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/SktRrD/hOaOAA/yQLSAA/nhFolB/TM --------------------------------------------------------------------~-> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

