Darksydaz
01-20-2011, 10:57 PM
I'm trying to figure out the Add Event Listener conditions for a "Dispatch Event" to work... is it inside the class with the function? the OOP is the confusing part to this entire thing. Egh.. help!!!
package scripts {
import flash.events.Event
...
public function example() {
addEventListener("call", myTest)
}
public function myTest(ev:Event) {
}
}
package scripts {
import flash.events.Event
...
public function example() {
addEventListener("call", myTest)
}
public function myTest(ev:Event) {
}
}