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);
                }
                
        }
        
}

Reply via email to