打印

AI里怎么打印多页

我有多个AI做的页面要打印,都是A4尺寸的,打起来真是很麻烦,要每个文件打开,然后“打印”,我看打印面板里有个选项是“打印范围”,可以选择“全部”,“页数”。

我的问题是,我怎么样做,才能一次打印出多个文件呢?是不是要把他们放在一个文件里呢,怎么放呢?

多谢!

[ 本帖最后由 civi 于 2008-4-21 12:43 编辑 ]
打印貌似有个任务计划来的     
PS. Illustrator 你可以简称 AI。
老百姓都是猪和兔子,公务员都是鸭子 大师是乌龟!
任务计划?
我看了一下Adobe论坛,有一个AppleScript可以做到打印文件夹内的所有Ai文件。复制以下内容,然后粘贴到 应用程序>AppleScript>脚本编辑器 内,然后保存到 应用程序>AI>预设>脚本 里。
复制内容到剪贴板
代码:
--get a sourceFolder that holds the files to print
set sourceFolder to (choose folder with prompt "Choose a folder with files to print:") as text
-- get a list of files of the files to be printed in the sourceFolder
tell application "Finder" to set workingFiles to (every file of folder sourceFolder) as alias list
repeat with workingFile in workingFiles
tell application "Adobe Illustrator"
open workingFile
set currentFile to front document
set vertPos to (height of currentFile) * 0.075
set horzPos to (width of currentFile) * 0.05
-- make temp info layer
make new layer at beginning of currentFile with properties ¬
{name:"temp info layer"} returning tempLayer
end tell
-- these lines don't address AI
set textBlock to "file: " & currentFile's name & return & ¬
"date: " & (current date)
set infoStamp to setContents(currentFile, tempLayer, textBlock)
tell application "Adobe Illustrator"
set infoStamp's position to {horzPos, vertPos}
print currentFile without «class EDlg»
delete tempLayer
close currentFile without saving
end tell -- bye, AI
end repeat
-- this handler is its own self-contained command that
-- requires its own tell block
on setContents(currentDoc, defLyr, textContents)
tell application "Adobe Illustrator"
tell currentDoc
make new text frame at end of defLyr with properties ¬
{contents:textContents} returning textStamp
set size of text of textStamp to 8
end tell
end tell
return textStamp
end setContents
windows系统的话,就不知道行不行了。

[ 本帖最后由 Dustalker 于 2008-4-21 13:28 编辑 ]

TOP

还在为头像烦恼?还在为不能关注好友动态烦忧?快来蓝色理想家园吧!
我是xp系统哎
我刚试了一下拼版,可是文件很大,拼出来的文件有9M,里面有十张图,打印的时候,他输出十个任务,每个9M,这样打起来还是很慢哎

[ 本帖最后由 civi 于 2008-4-21 14:05 编辑 ]

TOP

windows不会,要我想,就用Indesign CS3批量导入ai文件到每个页面然后打印。或者用Distiller全部转成pdf打印。

TOP