Tagged Questions

3
votes
3answers
321 views

Is event listener using CPU time

Maybe this is a dumb question, but do event listeners use CPU cycles like a timer, or are they inactive until the event is fired? Is it language specific, or do all languages handle this basically ...
2
votes
2answers
101 views

Why use event listeners over function calls?

I've been studying event listeners lately and I think I've finally gotten them down. Basically, they are functions that are called on another object's method. My question is, why create an event ...
0
votes
1answer
29 views

Event that fires when a url is confirmed as valid

Alright dudes... I have a problem that is looking for an answer more specific than the seemingly obvious solution. I have a block of code that I want to execute directly after a url is known to be ...
0
votes
4answers
360 views

How do I dispatch an event from one class and listen for it in another class that isn't a child or parent of the first class?

I am making a game using AS3. I have three classes (Spaceship, UFO, and Scoreboard) which are all children of the class GameEngine. I want to put eventListeners in Scoreboard and then send ...
0
votes
1answer
169 views

Action Script: When binding event listeners in an automated way, only the last one from the list becomes functional..?

Here is piece of code: protected function handleTriggers(raw:Object) : void { var name:String, value:String, map:Object; map = { 'onclick': MouseEvent.CLICK, ...