Want to write a service on contextual menu for finder

2011-03-04 Thread Vinay Jain
ve queries. It's highly appreciated if someone could share his wisdom on how I can achieve this. Thanks in advance ! Best Regards: Vinay Jain vi...@metadesignsolutions.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

Contextual Menu plugin for Finder in Snow Leopard

2011-03-04 Thread Vinay Jain
ould share his wisdom on how I can achieve this. Thanks in advance ! Best Regards: Vinay Jain vi...@metadesignsolutions.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. C

Strange problem with NSNotificationCenter and NPAPI plugin

2009-04-23 Thread vinay prabhu
core and the notification name? How an underscore causes the memory corruption? Thanks Vinay Crash log: Thread 0 Crashed: 0 com.apple.CoreFoundation 0x941b0016 CFEqual + 38 1 com.apple.CoreFoundation 0x9417f7f5 __CFDictionaryFindBuckets1b + 293 2 com.apple.Cor

Font related question

2008-07-01 Thread Vinay Prabhu
there any other way to get the NSFont object, using the font name and the trait name? Any suggestions? Thanks and Regards Vinay ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to

Re: [Solved]NSAppleScript returning wrong error info

2008-03-18 Thread Vinay Prabhu
Initializing the errorInfo to nil did the trick. When no error occurs, NSAppleScript will not touch the error dictionary. So I was trying to access the dictionary pointing to junk memory. Thanks for the help. -Vinay On Mar 18, 2008, at 7:44 PM, Nir Soffer wrote: On Mar 18, 2008, at 11:47

Re: NSAppleScript returning wrong error info

2008-03-18 Thread Vinay Prabhu
Thanks for the help. Initializing the error to nil did the trick. -Vinay On Mar 18, 2008, at 3:50 PM, Jean-Daniel Dupas wrote: Le 18 mars 08 à 10:47, Vinay Prabhu a écrit : I am trying to create a NSAppleScript object using a applescript file. The code is as follows, NSDictionary

NSAppleScript returning wrong error info

2008-03-18 Thread Vinay Prabhu
nfo count] selector not recognized This happens when I run my application in Japanese language. Any idea, why NSAppleScript is not returning NSDictionary object, when error occurs? Any help is greatly appreciated. Thanks and Regards -Vinay ___ Cocoa-

cross development ppc intel problem

2008-03-11 Thread vinay
I'm fairly new to XCode and mac development and am trying build a universal binary that I started designing on leopard intel. When I finally got my hands on a ppc tiger machine to test the UI looks completely different. The main issue is that the icons for my buttons are "zoomed in" on the ppc(prob

Re: Problem with CALayer delegate

2008-02-22 Thread Vinay Prabhu
your code, but you can try moving the setLayer and setWantsLayer outside the init. -Vinay On Feb 23, 2008, at 11:18 AM, Francois-Jean De Brienne wrote: thanks, but this did not help. I'm still not getting drawLayer: inContext to be called. On 23-Feb-08, at 12:41 AM, Vinay Pr

Re: Problem with CALayer delegate

2008-02-22 Thread Vinay Prabhu
Instead of creating CALayer object using, mainLayer = [[[CALayer alloc] init] retain]; try creating the CALayer this way, mainLayer = [[CALayer layer] retain]; -Vinay On Feb 23, 2008, at 10:50 AM, Matt Long wrote: You could try creating your own CALayer derived class that overrides - (void