CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (20 messages)

#13406 #Feature Sought Message #13415
From: Nathan Dickson Adobe Forum · Adobe Illustrator October 7, 1989 8:33 PM
No. Again: Illustrator documents, be it 88 or otherwise, has the printer name in the file. You could actually download the Adobe file itself to the PS printer (providing the origin was placed properly and that you had appended 'showpage' at the end) and everything would be perfect (and a…
#13401 Type 1 Specs Message #13414
From: Nathan Dickson Adobe Forum · Talk to the Trade October 7, 1989 8:30 PM
Important to remember, though, that changes to PostScript from Adobe are merely enhancements for speed improvement and device specific things such as halftoning accuracy/speed. Any increment to the PostScript version will never make the RED book obsolete, nor any printer adhering to at least version 23.0 obsolete (the version of…
From: Nathan Dickson Adobe Forum · PostScript October 7, 1989 9:43 AM
Why are you using a PC anyway? Mac is better.
#13386 Feature Sought Message #13397
From: Nathan Dickson Adobe Forum · Adobe Illustrator October 7, 1989 9:41 AM
What you could try is to print Illustrator documents using the Adobe Separator utility. Unless your customers have a tendency to leave scattered art all over the page.
#13371 Type 1 Specs Message #13396
From: Nathan Dickson Adobe Forum · Talk to the Trade October 7, 1989 9:35 AM
This anti-aliasing, if it could be called that with 1 bit pixels, seems logical but would take an astronimcal amount of calculations comparatively.
#13353 Type 1 Specs Message #13357
From: Nathan Dickson Adobe Forum · Talk to the Trade October 6, 1989 7:34 AM
Chances are that updates would be impossible in existing LW's unless you'd agree to an expensive board swap (might be just as easy to buy the latest LW with the upgrade in it).
#13333 #Type 1 Specs Message #13342
From: Nathan Dickson Adobe Forum · Talk to the Trade October 5, 1989 8:38 PM
What would be ideal, using the two master theory, is for the font description to be device smart. It would pull the default matrix and use it to test what size/resolution ratio it's printing at. At that point it would grab two versions of the same character, each specified for…
From: Nathan Dickson Adobe Forum · PostScript October 5, 1989 8:29 PM
Notice that showpage was 'appended'. This means that a call to showpage from any program will still call showpage, only now it will be YOUR showpage. Just remember that when you actually wish to print a page, you must now call showpage* or whatever you redefined the true procedure to…
#13310 #Feature Sought Message #13319
From: Nathan Dickson Adobe Forum · Adobe Illustrator October 5, 1989 7:20 AM
Interesting to note (I run a service bureau in Columbus, Ohio): Illustrator knows the printer font names, unlike any other DTP program. This means that screen fonts need not be loaded for output (no substitution occurs, it's already done at your level). Just thought you'd like to know.
#13299 #NFNT/Suitcase Message #13318
From: Nathan Dickson Adobe Forum · Programming October 5, 1989 7:13 AM
The better method of accomplishing what you seek can be better obtained using Font Harmony (coupled with Suitcase II). Remember, the important thing isn't that you have such and such number for Palatino FOND and such and such number for Palatino Roman FONT or NFNT, but that all are different.…
#13292 Clone Controllers Message #13296
From: Nathan Dickson Adobe Forum · Tool Box October 4, 1989 4:45 PM
I personally have yet to see ANYTHING on PC's that look anything but clunky (however you wish the term to apply). Yes the work can get done, but it's a pain in the A*S, even if you're expert at MS-DOS, etc. Now the MAC is a different story. Not only…
#13271 ##NFNT/Suitcase Message #13287
From: Nathan Dickson Adobe Forum · Programming October 4, 1989 11:56 AM
Font numbers from one system to the next ARE NOT SIGNIFICANT if the application using the fonts is written properly. Pagemaker, Freehand, Adobe, Quark and many programs like them (you'll need to check which ones) store fonts by FOND name, not by FOND number or by FONT or NFNT number.…
From: Nathan Dickson Adobe Forum · PostScript October 4, 1989 11:46 AM
Whoops, that message was garbled when sent… It should read, ahem… /*showpage /showpage load def /showpage { *showpage} bind def Hope that works better.
From: Nathan Dickson Adobe Forum · PostScript October 4, 1989 11:44 AM
All you have to do is redefine 'showpage'… *showpage /showpage load def showpage { *showpage} bind def Tis all…
#13259 Pagenumber variable? Message #13261
From: Nathan Dickson Adobe Forum · PostScript October 3, 1989 9:16 PM
I believe the following sequence of codes will work: statusdict begin pagecount end 20 string cvs At the end of this sequence a single object is left on the stack which is a 'show'-able string of the integer value returned by 'pagecount'.
#13239 Font Types Message #13243
From: Nathan Dickson Adobe Forum · Videophile October 3, 1989 9:47 AM
Type 1 fonts are fonts that are encrypted (secret code) and use Adobe's proprietary hinting technology for low resolution display. Type 1 fonts decode the font information using the 'eexec' operator (documentation to which should be released within a few months). Type 3 fonts are fonts created by anybody else…
#13202 #apd Message #13215
From: Nathan Dickson Adobe Forum · Tool Box October 1, 1989 9:50 PM
Steve: exitserver can be executed anytime there are no composite objects still on the stack or defined in dictionaries. Basically, as long as the environment of the interpeter is the same as the beginning of a job (easily attained by proper use of save/restore) an exitserver could even be done…
#13189 #apd Message #13201
From: Nathan Dickson Adobe Forum · Tool Box October 1, 1989 12:28 PM
Mike You can send as many exitserver routines as you wish in a single blow. But you can only exit the server loop once in a 'connect'. Once you've executed 'serverdict begin exitserver', you can stay there till you turn blue in the face changing persistent parameters till they're worn…
#13177 apd Message #13184
From: Nathan Dickson Adobe Forum · Tool Box September 30, 1989 4:58 PM
Glad I could help.
#13172 #apd Message #13183
From: Nathan Dickson Adobe Forum · Tool Box September 30, 1989 4:36 PM
Exitserver routines can only be ended by breaking communication with the Interpreter. The interpreter resets itself to the server mode so that the next time you connect, you are back in the server mode.