Skip to main content

All Questions

Tagged with
0 votes
1 answer
285 views

Trigger callback at specific times in Bass

I'm new to the Bass library but is it possible to pass in a list of times that trigger an event when the song has reached that time? For example, if I set a trigger at 30 seconds, when the song ...
XSL's user avatar
  • 3,025
0 votes
2 answers
12k views

Callback/event from Java timer [closed]

I'm writing a basic file monitor to check for new files in a directory. I haven't got a lot of experience with Java so I don't know what the recommended way of doing this is but here's what I have in ...
George Profenza's user avatar
2 votes
3 answers
5k views

Calling timer event Listener early in as3

I have the code: var timer:Timer = new Timer(milliseconds, repititions); timer.addEventListener(TimerEvent.TIMER, callback); timer.start(); and if a user click I want to call the callback early. Is ...
QuinnBaetz's user avatar
0 votes
1 answer
4k views

Timer's callback thread

I was thinking about how timers work, and there's something I don't fully understand. A Timer uses an event that is called when the time elapses. This I assume is triggered by an OS event that ...
Yochai Timmer's user avatar