PDA

View Full Version : External Event Handling with AS OOP



fishbellyrust
October 6th, 2005, 02:17 PM
I am building a fairly large project in Flash which requires the use of external class files. What is the best way to handle events externally? e.g. 'onPress' or 'onRollover' events. At the moment I am considering using one class file for all my events using the Delegate.create method which is a part of the mx.utils package. It needs to be as clean as possible. Thanks!

senocular
October 6th, 2005, 02:49 PM
It depends on what you're doing.

fishbellyrust
October 6th, 2005, 05:34 PM
It depends on what you're doing.

i'm building an e-book that has many buttons and movie clips being triggered by many events. and would like to keep the build as object oriented as possible.