views:

69

answers:

4

Hi,

I animate NSImageViews using its animator proxy. While testing my application on Snow Leopard, everything works as expected. However, on Leopard, none of the animations are functioning. In addition, NSImageViews don't seem to take into effect the alphaValue I set on them, whether through the animator proxy or not. The only way I can get them to disappear is by setting their image to nil. What is weird is that this all works fine in Snow Leopard, but does not work on Leopard 10.5.8. Any idea on why this may be occurring?

A: 

You probably need to build against the 10.5 SDK.

Paul R
A: 

It could just be a bug in Leopard that they fixed in Snow Leopard.

Peter Hosey
+2  A: 

This probably should have been in the AppKit release notes. In 10.5, -[NSView alphaValue] only has any effect for layer backed views. This limitation is lifted in 10.6.

Ken
A: 

Thanks Ken, this was exactly the issue.

Nick Paulson