How to set adjustment settings of a variant
Hi there, i'm pretty new to scripting and looking for a way to set the adjustment settings of a variant.
this is the script i'm using, but i'm missing something:
Can anyone point me in the right direction how to set the adjustment settings?
Thanks a lot!
Patrick
this is the script i'm using, but i'm missing something:
tell application "Capture One 11" to tell current document
set thevariant to the last variant
set sharpening amount of adjustment settings of thevariant to 100
end tell
Can anyone point me in the right direction how to set the adjustment settings?
Thanks a lot!
Patrick
1
-
Hi Pat, try this
tell application "Capture One 11"
set thevariant to the last variant
set sharpening amount of adjustments of thevariant to 60.0
end tell
Tips- No need to tell the document. The application contains all the variants currently displayed
- The properties of "variant" include "adjustment" The class of "adjustment" is "adjustment settings"
I find it worthwhile checking log history, and slecting the replies window, to see what Applescript told the application, and what the application replied back. In this case:tell application "Capture One 11"
get last variant
--> variant 1118 of collection 128 of document "Temp5M"
set sharpening amount of adjustments of variant 1118 of collection 128 of document "Temp5M" to 60
end tell1 -
Thanks Eric! And good point using the log historie. This will speed up the learning process.
Pat0
投稿コメントは受け付けていません。
コメント
2件のコメント