Re: Anti-aliasing in Snow Leopard (10.6) PDFView

2010-03-04 Thread Andy Mroczkowski
I just encountered this same problem with PDFView on 10.6. The same code works fine on 10.5. Did you ever find a solution? Or is there a bug I can reference? On Mon, Sep 7, 2009 at 5:50 PM, Duncan McGregor dun...@oneeyedmen.com wrote: It used to be that PDFView anti-aliased nicely. Now it

Re: Anti-aliasing in Snow Leopard (10.6) PDFView

2010-03-04 Thread Andy Mroczkowski
Here is a screenshot showing Preview vs PDFLinker2: http://dl.dropbox.com/u/45634/PDFView-AntiAlias-Issue/PreviewVsPDFView.png Here is a PDF that exhibits this problem: http://dl.dropbox.com/u/45634/PDFView-AntiAlias-Issue/PDFView-AntiAlias-Example.pdf Thank you for your time. - Andy On Tue,

Re: Anti-aliasing in Snow Leopard (10.6) PDFView

2010-03-04 Thread Andy Mroczkowski
Thanks Keith, that worked perfectly. On Thu, Mar 4, 2010 at 12:28 PM, Keith Blount keithblo...@yahoo.com wrote: Not sure if this is the same thing, but I recently ran into something similar - a scanned-in newspaper looked terrible and grainy in my app, although Preview handled it smoothly.

Re: [MEET] CocoaHeads Mac Developer Meetings

2008-09-03 Thread Andy Mroczkowski
* Philadelphia, PA - Thursday September 11, 2008 07:00 PM EST Topic to be announced. http://cocoaheads.org/us/PhiladelphiaPennsylvania/index.html http://upcoming.yahoo.com/event/1071293/ -- Andy Mroczkowski: [EMAIL PROTECTED] Philly CocoaHeads: http://cocoaheads.org/us

Re: Adding PDFPage to PDFDocument crashes

2008-09-02 Thread Andy Mroczkowski
Hi Paul, The structure of your code is very similar to some I wrote, which works well for me. A couple comments: PDFDocument *tempDoc = [[PDFDocument alloc] initWithData:[v dataWithPDFInsideRect:r]]; PDFPage *page = [[PDFPage alloc] initWithDocument:tempDoc];

Re: Adding PDFPage to PDFDocument crashes

2008-09-02 Thread Andy Mroczkowski
]; [outputDoc insertPage:[tempDoc pageAtIndex:0] atIndex:[outputDoc pageCount]]; I am going to test this idea. Do you think that it would work? One less pointer to manage? Thanks again for your response. Paul On Sep 2, 2008, at 12:28 PM, Andy Mroczkowski wrote: Hi Paul, The structure of your

[MEET] Philadelphia Area CocoaHeads: Thur Aug 14th

2008-08-11 Thread Andy Mroczkowski
We are having our very first Philly-area CocoaHeads meeting: THURSDAY August 14th - 7 PM @ IndyHall - 32 Strawberry Street in Old City Philadelphia. http://upcoming.yahoo.com/event/983969/?ps=8 Be there for our maiden voyage! -- Andy Mroczkowski: [EMAIL PROTECTED] Philly CocoaHeads: http

Re: archive only what changed?

2008-07-07 Thread Andy Mroczkowski
Another possible option is CDBStore framework. I haven't personally used it, but it claims to fill the gap between archiving/property lists and Core Data. http://mooseyard.com/projects/CDBStore/ - Andy On Jul 7, 2008, at 10:25 AM, I. Savant wrote: \On Mon, Jul 7, 2008 at 10:13 AM, Randy

Re: How to disconnect bound views temporarily

2008-06-15 Thread Andy Mroczkowski
Hi Markus, I'm guessing that your NSArrayController is in the nib itself. One thing you could do is instantiate it programmatically and set it as an ivar of some other controller class in the nib (lets call it MyWindowController). Then bind the views to the

Re: When is a document moved or renamed?

2008-06-13 Thread Andy Mroczkowski
I had this same problem. I was storing some flat-file slave documents inside a package-based master document. This led to several problems: Internally NSDocument stores its path as an FSRef, not just a URL. FSRefs allow you to track files as they move around the volume. Convenient.