and if it helps any, this is what the custom event class looks like:
package com.venice.event
{
import flash.events.Event;
/**
* ...
* @author Jason Merrill
*/
public class HelpEvent extends Event
{
public static var HELP_INITIALIZED:String
= "help_initialized";
public static var HELP_TERMINATED:String
= "help_terminated";
public static var HELP_TOPIC_CHANGED:String
= "help_topic_changed";
public function HelpEvent(type:String,
bubbles:Boolean=false, cancelable:Boolean=false)
{
super(type, bubbles, cancelable);
}
}
}- Re: [flexcoders] Cairngorm concepts Douglas Knudsen
- Re: [flexcoders] Cairngorm concepts shaun
- [flexcoders] Re: Cairngorm concepts oscar.12321
- Re: [flexcoders] Re: Cairngorm concepts Daniel Gold
- [flexcoders] Re: Cairngorm concepts oscar.12321
- Re: [flexcoders] Re: Cairngorm concepts Jon Bradley
- [flexcoders] Re: Cairngorm concepts oscar.12321
- [flexcoders] Component ClickEvent we... Jason
- [flexcoders] Re: Component Click... valdhor
- [flexcoders] Re: Component Click... Jason
- [flexcoders] Re: Component Click... Jason
- [flexcoders] Re: Component Click... Amy
- [flexcoders] Re: Component Click... Sid Maskit
- [flexcoders] Re: Component Click... Jason
- [flexcoders] Re: Component Click... Jason

