Re: Core Animation: Disabling Implicit Animations

2008-07-15 Thread Chilton Webb
Hi, I am in the same boat. I have an NSTextView inside an NSScrollView that shows the default transitions when new text is added, or when the scroll view is resized. I don't want that. However, I can't figure out where to override the default transition. I subclassed both the NSTextView

Core Animation: Disabling Implicit Animations

2008-06-24 Thread Wil Gieseler
Hello, a (hopefully) quick question. I have a view which I would like to use some Core Animation transitions on, so I've set it to [theContentView setWantsLayer:YES]. However, this causes all of its subviews to automatically gain fade transitions (which is the expected behavior). However,

Re: Core Animation: Disabling Implicit Animations

2008-06-24 Thread Scott Anguish
at the core animation level... three options 1: disable actions in a explicit transaction and do everything inside that transaction http://developer.apple.com/documentation/Cocoa/Conceptual/CoreAnimation_guide/Articles/Transactions.html#/ /apple_ref/doc/uid/TP40006096-SW9 or

Re: Core Animation: Disabling Implicit Animations

2008-06-24 Thread Shripada Hebbar
All default (implicit) animations are returned in the method: +(id)defaultAnimationForKey:(NSString*)key You can simply override this and just return nil. This would mute out all implicit animations. And if you want specific animations, you can set them into the animations dictionary of