February 7th 2006 @ 11:38 am
Filed under: Flash, Web Design
The use of a static method to delegate events in Flash is one of the easiest ways of associating functions to an event.
read on »The use of a static method to delegate events in Flash is one of the easiest ways of associating functions to an event.
read on »I’ve been having a lot of trouble having Event (clicks, loads, etc…) in Flash for as long as I’ve been doing Object-Oriented ActionScript. I barely managed to call inline functions and having to use the absolute path to the property. Example:
class Foo {
public var _someProperty:String
public function Foo() {
// Lets skip how I actually make the [...]