Re: Perform Selector After Delay Secondary Window

2008-03-19 Thread Matt Long
Man! That sure simplified things. Thanks for the tip. Works perfectly. I ended up using NSRunLoopCommonModes which is apparently Leopard only. But that's fine for my app. Thanks. -Matt On Mar 19, 2008, at 7:16 PM, Wim Lewis wrote: On Mar 19, 2008, at 6:00 PM, Matt Long wrote: [self perf

Re: Perform Selector After Delay Secondary Window

2008-03-19 Thread Wim Lewis
On Mar 19, 2008, at 6:00 PM, Matt Long wrote: [self performSelector:@selector(checkPlayback:) withObject:currentTimeValue afterDelay:0.15] While the secondary window is open, checkPlayback never gets called. As soon as the window gets closed, though, all of these events pile up at my brea

Perform Selector After Delay Secondary Window

2008-03-19 Thread Matt Long
This may be a best practice type issue, so if you think I'm missing something fundamental, don't assume I know it just because I probably should. I have a class called AppDelegate that handles all of my UI code. I am handling actions in it not only from my main window, but also from secon