Re: [flexcoders] Custom event - Create, dispatch, and listen to.

2008-10-17 Thread claudiu ursica
any Cheers, Claudiu - Original Message From: shaun [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, October 17, 2008 6:23:59 AM Subject: Re: [flexcoders] Custom event - Create, dispatch, and listen to. Hi, Class names should begin with an Uppercase letter. RemoteClick

RE: [flexcoders] Custom event - Create, dispatch, and listen to.

2008-10-17 Thread Gordon Smith
. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of claudiu ursica Sent: Friday, October 17, 2008 12:45 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Custom event - Create, dispatch, and listen to. You also may want to avveride

[flexcoders] Custom event - Create, dispatch, and listen to.

2008-10-16 Thread markgoldin_2000
Trying to create my first custom event. Here is my code: // custom event class: package modulecode { import flash.events.Event; public class remoteClick extends Event { [Event(name=remoteClickEvent, type=flash.events.Event)] private var

Re: [flexcoders] Custom event - Create, dispatch, and listen to.

2008-10-16 Thread shaun
Hi, Class names should begin with an Uppercase letter. RemoteClick not remoteClick. The type String can be lowercase if you want.. Something like the following.. package modulecode { import flash.events.Event; public static const remoteClick:String=remoteClick;