I am using current AppleScript to create custom TrimBox (in Acrobat):
tell application "Adobe Acrobat Pro"
activate
tell active doc
repeat with i from 1 to count of pages
tell page i
set {L, T, R, B} to media box
set trim box to {L + 25 * 2.834645, T - 25 * 2.834645, R - 25 * 2.834645, B + 120 * 2.834645}
end tell
end repeat
end tell
end tell
I would like to be able to prompt for User Input change the values of: L, T, R, B:
You want to get KM variables into the AppleScript, so you would do something like this (at the beginning of your AppleScript):
tell application "Keyboard Maestro Engine"
set trimTop to getvariable "Top"
set trimBottom to getvariable "Bottom"
set trimLeft to getvariable "Left"
set trimRight to getvariable "Right"
end tell
Then use the new variables (trimTop, etc.) in the script.
The problem was that this topic was in the "macro" Category, which does not allow the "Solved" feature. I changed it to the "general" Category (which is where it belongs), and now you should see the "Solved" checkbox.