Now FDT Event Autocompletion is also available for the Starling framework:

StarlingEventsAutoCompletion
Here you can see that all available starling events for the Starling Sprite.

The event listener quick fix can handle the starling events, too:

StarlingEventHandlerQuickFix

The event listener name is now customizable:

EventListernerNameSetting
The short listener name will be the concatenation of “handle” and the name of the event with first letter upper case.

For example if the event is ADDED the event listener name will be “handleAdded” as you can see here:
EventListenerNameModified
The long listener name is the concatenation of “on” the event name, underscore and source (i.e. name of the accessed variable with first letter lower case).