FLEX 3 Custom Event Listener with Popup window
Create the custom Event.
In this case I will need to pass an object along with the event.
Save the actionscript as ParseFixClickEvent.as
package modules.FIXParser.Events
{
import flash.events.Event;
public class ParseFixClickEvent extends Event
{
public var params:Object;
public static const PARSE:String = “parseEvent”;
public function ParseFixClickEvent(params:Object, type:String )
{
super(type);
this.params = params;
}
public override function clone():Event {
return new ParseFixClickEvent(params,type);
}
public override function toString():String
{
return formatToString(”ParseFixClickEvent”,”type”);
}
}
}
In my case I […]
Free Windows Screen Capture Program
Recently I’ve been trying to put some tutorials together and I needed a better application to handle my screen shots that windows PrintScreen and Alt-Print Screen. I wanted to be able to take small parts of an application without having to do an alt-PrintScreen and then edit it in my favorite image editor MS Paint […]
Using FireUploader to Move Files To And From Google Docs
is is a video tutorial for using FireUploader (firefox plugin) to upload to GoogleDocs.

