I need to get two of these to run simultaneously. By default
NSAnimation runs in NSAnimationBlocking mode. So I added the line:
[animation setAnimationBlockingMode: NSAnimationNonblocking];
right before [animation startAnimation];
That skips the animation altogether, even when I remove the clean up
code that follows...
Has anybody been successful at running animation in
NSAnimationNonblocking or NSAnimationNonblockingThreaded mode? and
how does that work? I tried my own thread, but that messes up the
animation...