[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(DTPtechNote:557) InDesignのASをすこしでも早く。。。。



InDesignのASでテキスト関係をぐるぐるしている時など、
どうしても描画やパレット類のリアルタイム表示によってASが遅くなってしまいます。
パレット類を閉じたりすることはできないし、greek below of display setting 1はアプリケーションデフォルトなので、現在のドキュメントに適用するのはムツカシイっぽい。

ちょっと「おうち使い」になってしまうけれど、、、
InDesignをバックグランドにして、手前をフォルダとかで覆ってしまうと早くなるんじゃないか。。。
と思って試してみたら、やっぱりそうでした。
このへんはQXPの感覚を一緒ですね。
カッコワルイのはしょうがないか(笑)

こんな感じでテスト
set s_time to current date
tell application "InDesign 2.0.2J"
	activate
	--tell application "Finder" to activate--ここを生かすとスピードが上がります(フォルダで覆うとなお早い)
	tell document 1
		tell text frame 1
			repeat with i from 1 to (count every character)
				select character i
			end repeat
		end tell
	end tell
	set e_time to current date
	tell application "Finder"
		activate
		display dialog (e_time - s_time)
	end tell
end tell