Matching output color from Preview with PDFKit

2011-08-24 Thread Chris Backas
Hello all, I am trying to setup an internal application that prints PDF documents in an automated fashion to a set of known internal printers. I have played with the various vendor settings in the Print dialog in Preview long enough to get a saved set of print options that produce the color

WebView w/ Java Plugin in NSTabView

2010-12-02 Thread Chris Backas
a preference, setting, or delegate method that seemed promising to change the behavior. Anyone have any insights into either problem? Thanks in advance, -Chris Backas CONFIDENTIALITY NOTICE: This email (and any related attachments) contains information from InfoPlus (a service of Bristol

Re: advancementForGlyph problem

2010-04-29 Thread Chris Backas
close to the estimated size you're expecting. Perhaps this negative value implies that the drawing of this glyph is actually to start from *slightly* in the previous character's area? Total guess, feel free to ignore etc etc ;) Chris Backas On Apr 28, 2010, at 2:49 PM, David F. wrote

Re: [ANN]: RegexKitLite 4.0

2010-04-21 Thread Chris Backas
(Mac Apps, iPad Apps, iPhone Apps, Productivity Apps) etc, and then different sites/people put different things on their lists. You could pretty quickly get a list of unique programs much larger than 10 ;) -Chris Backas CONFIDENTIALITY NOTICE: This email (and any related attachments

Re: NSRecursiveLock problems

2009-12-22 Thread Chris Backas
with an alternative way to architect this - we had to do all our string measuring on the main thread. (We were actually getting occasional crashes from doing this on a secondary thread, maybe once every 30K strings or so) Hope that helps some, Chris Backas On Dec 22, 2009, at 1:49 PM, PCWiz wrote

Re: Need help for user interface in COCOA + Objective C

2009-03-31 Thread Chris Backas
Hello, Short answer is Use the main thread. Nearly all of AppKit is unsafe to use on secondary threads. Better answer is to read the Thread Programming Guide here: http://developer.apple.com/documentation/Cocoa/Conceptual/Multithreading/Introduction/Introduction.html Good luck, Chris Backas

Binding to an NSSet

2008-09-05 Thread Chris Backas
replace, or call methods on the new objects being inserted into the collection when NSArrayController's add: gets called. Thanks for any help! Chris Backas ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: Exception thrown when calling NSConnection connectionWithReceivePort:sendPort:

2008-07-23 Thread Chris Backas
is the problem. That'll be phase 2, but I have to prove that this concept works first =) Chris Backas On Jul 22, 2008, at 7:16 PM, Ken Thomases wrote: On Jul 22, 2008, at 10:46 AM, Chris Backas wrote: So... the problem is that when I try to reconnect to DO, meaning, call getServerProxy

Re: NSLog on releasebuild

2008-07-23 Thread Chris Backas
I agree with this. I like to leave my Console open most of the time, to monitor for potential software problems. I really dislike applications that just spew endless nonsense there under even normal conditions. Chris On Jul 23, 2008, at 11:36 AM, Andrew Merenbach wrote: I'd say that

Exception thrown when calling NSConnection connectionWithReceivePort:sendPort:

2008-07-22 Thread Chris Backas
that it tries to register with the Current run loop. NSRunLoop's documentation says that if you ask for the current run loop and there isn't one, one will be created though... So I can't see a situation where it would be trying to add a nil run loop. Any ideas? Thanks! Chris Backas