Re: CA crossfade

2012-07-15 Thread Fritz Anderson
I'm an adventurer, so I tried this: === self.backgroundLayer.contents = nsImage; CABasicAnimation * crossfade; crossfade = [CABasicAnimation animationWithKeyPath: @"contents"]; crossfade.duration = 2.0; crossfade.removedOnCompletion = YES; [self.backgroundLayer addAnimation: crossfade fo

CA crossfade

2012-07-15 Thread Fritz Anderson
10.7 SDK, 10.7 target. The content view of the window is layer-hosting, containing only a CALayer. I'm trying to crossfade the contents image of the CALayer from Image A (the existing contents) to Image B (the new contents). Surely this is simple. I'm thrashing. Here is an excerpt from my cont