dornad
dornad

Reputation: 1294

Troubleshooting Flash Events

I wanted to ask any Flash gurus here if they have any best practices for troubleshooting Flash (custom) Events. I'm currently dealing with a couple of events that are supposedly being dispatched but never caught by the corresponding listeners.

Here is the list of things I've already checked for:

If anyone has any suggestion, It will be much appreciated.

Upvotes: 0

Views: 122

Answers (1)

average dev
average dev

Reputation: 1118

I believe most frequent mistakes are: 1. Event listener added after event being already dispatched. 2. Non-overriden clone() and toString() methods for custom event. 3. Simply listening wrong objects/wrong events.

Upvotes: 1

Related Questions