Re: i5 & i7 auto graphics switching

2010-09-12 Thread Trygve Inda
> On Sep 11, 2010, at 10:57 PM, Trygve Inda wrote: > >>> On Sep 11, 2010, at 10:52 AM, Trygve Inda wrote: >>> Is there a way to be notified when the graphic card is switched? >>> >>> NSApplicationDidChangeScreenParametersNotification >> >> When it is running on the slow card, the CGDirectD

Re: what is best for a simple 3D animation

2010-09-12 Thread David Duncan
On Sep 12, 2010, at 5:32 PM, Martin Beroiz wrote: > I'll start a program that I will eventually port to the iPod touch platform, > but I also want to have a mac counterpart. > > It will involve a simple animation, a sphere that the user can spin faster > with his finger (in the iPod Touch of c

iTunes Scripting Bridge - -fullScreen not working with iTunes 10?

2010-09-12 Thread Brad Gibbs
I've been trying [self.iTunesApp setFullScreen:YES] and self.iTunesApp.fullScreen = YES but [self.iTunesApp lastError] always returns NULL, despite the fact that iTunes is not going fullscreen. I've also tried setting the bounds of the main browser window to the frame of the screen, which work

what is best for a simple 3D animation

2010-09-12 Thread Martin Beroiz
Hi everybody, I'll start a program that I will eventually port to the iPod touch platform, but I also want to have a mac counterpart. It will involve a simple animation, a sphere that the user can spin faster with his finger (in the iPod Touch of course), later I'll make it a little more compl

Re: question on speed and memory display on 10.6.

2010-09-12 Thread Ed Wynne
On Sep 12, 2010, at 5:43 PM, Seth Willits wrote: > On Sep 12, 2010, at 12:33 PM, Mitchell Livingston wrote: > >> In 10.6 the display of disk space was changed from base-2 to base-10, as >> discussed in http://support.apple.com/kb/TS2419. For download rates >> (KB/sec), is that also in base-10

Re: web-based Cocoa dev docs inaccessible

2010-09-12 Thread Richard Somers
On Sep 12, 2010, at 4:32 PM, Jeffrey Oleander wrote: I was trying to look up something about NSAttributedStrings and found that the usual link led me to a page that no longer has a search box, links to docs, etc. Here are the primary links that I use. Application Kit Framework Reference h

web-based Cocoa dev docs inaccessible

2010-09-12 Thread Jeffrey Oleander
Normally, I'd file an on-line criticism of the docs, but I can't get there, and this is the closest means I have to doing so. I was trying to look up something about NSAttributedStrings and found that the usual link led me to a page that no longer has a search box, links to docs, etc. My BookMar

Re: question on speed and memory display on 10.6.

2010-09-12 Thread Seth Willits
On Sep 12, 2010, at 12:33 PM, Mitchell Livingston wrote: > In 10.6 the display of disk space was changed from base-2 to base-10, as > discussed in http://support.apple.com/kb/TS2419. For download rates (KB/sec), > is that also in base-10 on 10.6? Also, in what base is the display of the > amoun

Re: question on speed and memory display on 10.6.

2010-09-12 Thread David Duncan
On Sep 12, 2010, at 12:33 PM, Mitchell Livingston wrote: > In 10.6 the display of disk space was changed from base-2 to base-10, as > discussed in http://support.apple.com/kb/TS2419. For download rates (KB/sec), > is that also in base-10 on 10.6? Also, in what base is the display of the > amoun

question on speed and memory display on 10.6.

2010-09-12 Thread Mitchell Livingston
In 10.6 the display of disk space was changed from base-2 to base-10, as discussed in http://support.apple.com/kb/TS2419. For download rates (KB/sec), is that also in base-10 on 10.6? Also, in what base is the display of the amount of system memory? __

Re: i5 & i7 auto graphics switching

2010-09-12 Thread Ken Thomases
On Sep 11, 2010, at 10:57 PM, Trygve Inda wrote: >> On Sep 11, 2010, at 10:52 AM, Trygve Inda wrote: >> >>> Is there a way to be notified when the graphic card is switched? >> >> NSApplicationDidChangeScreenParametersNotification > > When it is running on the slow card, the CGDirectDisplayID wi

Re: Convert CFURLRef to NSURL

2010-09-12 Thread Charles Srstka
On Sep 12, 2010, at 11:38 AM, Tom Jones wrote: > Hello, I have been googling on how to convert a CFURLRef to NSURL. But it > always seems to be the oposite that people are searching for. > > Thanks, > tom Just cast it. CFURL and NSURL are toll-free bridged. Charles_

Convert CFURLRef to NSURL

2010-09-12 Thread Tom Jones
Hello, I have been googling on how to convert a CFURLRef to NSURL. But it always seems to be the oposite that people are searching for. Thanks, tom ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator c

Re: move drag and drop operations between different data sources

2010-09-12 Thread Kyle Sluder
On Sep 12, 2010, at 6:05 AM, Johan Rydberg wrote: > Kyle, > > if your data source just acts as source, and not destination, there's now in > the writeRows-method to know where the rows will end up. Hense, it's not > possible to do move between tables in different application (where > acceptDr

Re: move drag and drop operations between different data sources

2010-09-12 Thread Johan Rydberg
Kyle, if your data source just acts as source, and not destination, there's now in the writeRows-method to know where the rows will end up. Hense, it's not possible to do move between tables in different application (where acceptDrop:row:... will never be called for the drag data source). Right?