Advertisement
Guest User

Untitled

a guest
Jan 8th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #this script needs Adobe Premiere Pro CC 2018, with custom keyboard shortcuts
  2. tell application "Adobe Premiere Pro CC 2018" to activate
  3. delay 0.2 -- do not change!
  4. repeat 200 times -- change "200" to desired amount of cuts you need
  5.     delay 0.05 -- change delay depending on computer speed, slower pc's migh need bigger delay, if possible make cut in proxy mode
  6.     tell application "System Events" to tell process "Adobe Premiere Pro CC 2018"
  7.         keystroke "k" using command down -- This part of code utilizes Premiere Pro CC2017 shortcut to add edit through all lines. Default shortcut for it is command+shift+K, change it to command+K!
  8.     end tell
  9.     delay 0.05
  10.     tell application "System Events" to tell process "Adobe Premiere Pro CC 2018"
  11.         key code 125 -- This part of code orders Premiere to jump 1 cut ahead (with arrow down key)
  12.     end tell
  13. end repeat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement