0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Photoshop互換性を優先を外して上書き保存するApplescript-Droplet

Last updated at Posted at 2015-03-31
PhotoshopmaximizeCompatibilityoff.scpt
on open of myFiles
	tell application "Adobe Photoshop CC 2014"
		activate
		set myOldSetting to maximize compatibility of settings
		set maximize compatibility of settings to never
		repeat with i in myFiles
			set myFile to i as Unicode text
			open alias myFile
			set myLayer to make new art layer at end of current document with properties {name:"Trash"}
			delete myLayer
			save current document in file myFile
			close current document
		end repeat
		set maximize compatibility of settings to myOldSetting
	end tell
end open

互換性を優先環境設定を一時的にneverにし、レイヤー作成&削除で保存フラグを立てて、上書き保存します。

注意) 使用時、カラー設定は以下のように。
SS 2015-04-01 16.40.03.png
カラープロファイルが埋め込まれていることを前提にしています。埋め込まれていないファイルは適宜、指定してください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?