Photoshop 호환성 우선순위를 제거하고 덮어쓰기 AppleScript-Droplet
4579 단어 AppleScript포토샵
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로, 레이어 만들기 및 삭제에서 저장 플래그를 설정하고 덮어쓰기 저장합니다.
주의) 사용시, 컬러 설정은 다음과 같이.
컬러 프로파일이 내장되어 있다고 가정합니다. 포함되지 않은 파일은 적절하게 지정하십시오.
Reference
이 문제에 관하여(Photoshop 호환성 우선순위를 제거하고 덮어쓰기 AppleScript-Droplet), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yamo74/items/bbd20b6cf2c16889e45f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)