Animated NSImage inside NSMenuItem
Animated NSImage inside NSMenuItem
- Subject: Animated NSImage inside NSMenuItem
- From: vance <email@hidden>
- Date: Fri, 26 Oct 2007 12:33:09 -0700
Is it possible to have animated GIF inside NSMenuItem?
At the moment I use [menuItem setImage: animatedImage] to set the
image of the menu item instance however the image is NOT animated
(only displays the first frame)
I create the NSImage instance with this:
NSString *urlString = @"http://www.someserver.com/animation_loop.gif";
NSURL *url = [NSURL URLWithString: urlString];
NSData *imageRawData = [url resourceDataUsingCache: NO];
NSImage *animatedImage = [[NSImage alloc] initWithData: imageRawData];
-Vance
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden