AppleScript to Launch Live View and Set Orientation to 270
Hello,
I'm trying to create a script that will launch live view and set the orientation to 270. I'm no expert script writer but I can usually get them to work after some time. This is what I came up with but I get the -10006 error.
- - - - - - -
tell application "Capture One 21" to activate
tell application "Capture One 21"
begin live view
set capture orientation to 270
end tell
- - - - - - -
Any input will be appreciated,
Thanks,
-ado123
0
-
Hi there,
capture orientation is a property of a document's next capture settings. So you need something like this:
tell application "Capture One 21"
activate
begin live view
set currentDocument to current document
tell currentDocument
set capture orientation of next capture settings to 270
end tell
end tell0 -
Amazing!
Thank you very much Quentin! This is exactly what I need the script to do!
Thanks for your input!
-ado123
0
Post ist für Kommentare geschlossen.
Kommentare
2 Kommentare