Mega Code Archive
Display current phase and information about the current target
import mx.controls.Alert;
private function showInfo(e:MouseEvent):void {
Alert.show("Phase: " + e.eventPhase + "\n" +
"ID: " + e.currentTarget.id + "\n" +
"Label: " + e.currentTarget.label + "\n" +
"Font Size: " + e.currentTarget.getStyle("fontSize"), "Current Target Info");
}