text
stringlengths
0
15.7k
source
stringlengths
6
112
set the clipboard to "β‡§βŒƒβŒ₯⌘"
Copy Keyboard Shortcut Symbols.applescript
open location "http://www.apple.com/"
Contextual menu.applescript
set theImage to image 1 of UI element 3 of UI element 1 of scroll area 1 of group 1 of group 1 of group 2 of window "Apple"
Contextual menu.applescript
tell theImage to perform action "AXShowMenu"
Contextual menu.applescript
set to_delete to {"my_email", "first_name", "last_name", "my_mobile"}
delete%20keyboard%20maestro%20variables.applescript
repeat with my_var in to_delete
delete%20keyboard%20maestro%20variables.applescript
setvariable (my_var as text) to "%Delete%"
delete%20keyboard%20maestro%20variables.applescript
set appName to "Clock mini"
Toggle Clock Mini.applescript
set currentApp to the name of (process 1 where frontmost is true)
Toggle Clock Mini.applescript
if currentApp is not appName then
Toggle Clock Mini.applescript
tell application "Clock mini"
Toggle Clock Mini.applescript
tell application "Finder" to set visible of process appName to false
Toggle Clock Mini.applescript
set textToType to the clipboard
type_from_clipboard.applescript
keystroke textToType
type_from_clipboard.applescript
set userDecrement to 2 -- enter your desired decrement here
Master Decrement.applescript
set newLevel to currentLevel - userDecrement
Master Decrement.applescript
my regexMatches("<p>γ‚γ„γ†γˆγŠ</p>", "<(.+?)>")
regexMatches.scpt
on regexMatches(aText as text, pattern as text)
regexMatches.scpt
set aString to current application's NSString's stringWithString:aText
regexMatches.scpt
set matches to regularExpression's matchesInString:aString options:0 range:{location:0, |length|:aString's |length|()}
regexMatches.scpt
set matchResultList to {}
regexMatches.scpt
set matchResult to {}
regexMatches.scpt
repeat with i from 0 to (match's numberOfRanges as integer) - 1
regexMatches.scpt
set end of matchResult to (aString's substringWithRange:(match's rangeAtIndex:i)) as text
regexMatches.scpt
set end of matchResultList to matchResult
regexMatches.scpt
return matchResultList
regexMatches.scpt
tell application "Caffeine" to turn on
Caff Bright 0.applescript
set question to display dialog "Lines" default answer 10
make _tickets.applescript
set question to display dialog "Numbers on each line" default answer 5
make _tickets.applescript
set boxes to text returned of question
make _tickets.applescript
set my_story to ""
make _tickets.applescript
repeat with p from 1 to totalpages
make _tickets.applescript
repeat with i from 0 to (boxes-1)
make _tickets.applescript
set my_story to my_story & tall & " "
make _tickets.applescript
set my_story to my_story & "
make _tickets.applescript
display dialog my_story
make _tickets.applescript
set story 1 of current box to my_story
make _tickets.applescript
set theRating to 60 -- 3 stars
3-star.scpt
set theVacation to make new calendar event with properties {free busy status:free, subject:"<name> Vacation", all day flag:true, has reminder:false, start time:(current date), end time:(current date) + 3600}
Make vacation.applescript
open theVacation
Make vacation.applescript
set triggerName to ""
Create Selection cue in a separate cue list.applescript
set triggerAbb to ""
Create Selection cue in a separate cue list.applescript
set triggerOptions to {}
Create Selection cue in a separate cue list.applescript
set triggerOptionsAbb to {}
Create Selection cue in a separate cue list.applescript
set allVariations to "No"
Create Selection cue in a separate cue list.applescript
set firstResults to (display dialog "What is the name of this Character, or Announcement?" default answer "" buttons {"OK", "Announcement", "Cancel"} default button "OK" cancel button "Cancel")
Create Selection cue in a separate cue list.applescript
if button returned of firstResults is "Announcement" then
Create Selection cue in a separate cue list.applescript
set triggerName to "Announcement"
Create Selection cue in a separate cue list.applescript
set triggerAbb to "ann"
Create Selection cue in a separate cue list.applescript
set triggerName to text returned of firstResults
Create Selection cue in a separate cue list.applescript
display dialog "What abbreviation do you want to use?" default answer ""
Create Selection cue in a separate cue list.applescript
set triggerAbb to text returned of result
Create Selection cue in a separate cue list.applescript
if triggerAbb is "ann" then
Create Selection cue in a separate cue list.applescript
util's insertItemInList("Evening", triggerOptions, 1)
Create Selection cue in a separate cue list.applescript
util's insertItemInList("eve", triggerOptionsAbb, 1)
Create Selection cue in a separate cue list.applescript
util's insertItemInList("Matinee", triggerOptions, 2)
Create Selection cue in a separate cue list.applescript
util's insertItemInList("mat", triggerOptionsAbb, 2)
Create Selection cue in a separate cue list.applescript
repeat while allVariations is not "Yes"
Create Selection cue in a separate cue list.applescript
set listPosition to (length of triggerOptions) + 1
Create Selection cue in a separate cue list.applescript
set results to (display dialog "If there are any variations, in addition to Evening and Matinee, start entering them here. If that is all, click \"That's All\"" default answer "" buttons {"OK", "That's All", "Cancel"} default button "OK" cancel button "Cancel")
Create Selection cue in a separate cue list.applescript
set nextOption to text returned of results
Create Selection cue in a separate cue list.applescript
set buttonReturned to button returned of results
Create Selection cue in a separate cue list.applescript
if buttonReturned is "That's All" then exit repeat
Create Selection cue in a separate cue list.applescript
util's insertItemInList(nextOption, triggerOptions, listPosition)
Create Selection cue in a separate cue list.applescript
set nextAbb to text returned of result
Create Selection cue in a separate cue list.applescript
util's insertItemInList(nextAbb, triggerOptionsAbb, listPosition)
Create Selection cue in a separate cue list.applescript
if length of triggerOptions is less than 1 then
Create Selection cue in a separate cue list.applescript
set results to (display dialog "Which is the first actor playing this character, or variation of the announcement?" default answer "" buttons {"OK", "That's All", "Cancel"} default button "OK" cancel button "Cancel")
Create Selection cue in a separate cue list.applescript
set results to (display dialog "Which is the next actor playing this character, or variation of the announcement?" default answer "" buttons {"OK", "That's All", "Cancel"} default button "OK" cancel button "Cancel")
Create Selection cue in a separate cue list.applescript
set current cue list to first cue list whose q name is "Select Playback Variants"
Create Selection cue in a separate cue list.applescript
set variantSelectCueList to first cue list whose q name is "Cue list"
Create Selection cue in a separate cue list.applescript
set q name of variantSelectCueList to "Select Playback Variants"
Create Selection cue in a separate cue list.applescript
collapse variantSelectCueList
Create Selection cue in a separate cue list.applescript
make type "group"
Create Selection cue in a separate cue list.applescript
set triggerGroup to last item of (selected as list)
Create Selection cue in a separate cue list.applescript
set mode of triggerGroup to timeline
Create Selection cue in a separate cue list.applescript
set q name of triggerGroup to "Select: " & triggerName
Create Selection cue in a separate cue list.applescript
set q color of triggerGroup to "cerulean"
Create Selection cue in a separate cue list.applescript
set triggerGroupID to uniqueID of triggerGroup
Create Selection cue in a separate cue list.applescript
repeat with eachItem in triggerOptions
Create Selection cue in a separate cue list.applescript
set eachAbb to item currentPosition in triggerOptionsAbb
Create Selection cue in a separate cue list.applescript
set itemGroup to last item of (selected as list)
Create Selection cue in a separate cue list.applescript
set mode of itemGroup to timeline
Create Selection cue in a separate cue list.applescript
set q name of itemGroup to "Select " & triggerName & ": " & eachItem
Create Selection cue in a separate cue list.applescript
set q number of itemGroup to "sel." & triggerAbb & "." & eachAbb
Create Selection cue in a separate cue list.applescript
set itemGroupID to uniqueID of itemGroup
Create Selection cue in a separate cue list.applescript
move cue id itemGroupID of parent of itemGroup to end of triggerGroup
Create Selection cue in a separate cue list.applescript
make type "network"
Create Selection cue in a separate cue list.applescript
set disarmAll to last item of (selected as list)
Create Selection cue in a separate cue list.applescript
set disarmAllID to uniqueID of disarmAll
Create Selection cue in a separate cue list.applescript
set osc message type of disarmAll to qlab
Create Selection cue in a separate cue list.applescript
set q_num of disarmAll to triggerAbb & ".*"
Create Selection cue in a separate cue list.applescript
set q_command of disarmAll to 20
Create Selection cue in a separate cue list.applescript
set q_params of disarmAll to "0"
Create Selection cue in a separate cue list.applescript
move cue id disarmAllID of parent of disarmAll to end of itemGroup
Create Selection cue in a separate cue list.applescript
set armCorrect to last item of (selected as list)
Create Selection cue in a separate cue list.applescript
set armCorrectID to uniqueID of armCorrect
Create Selection cue in a separate cue list.applescript
set osc message type of armCorrect to qlab
Create Selection cue in a separate cue list.applescript
set q_num of armCorrect to triggerAbb & "." & eachAbb & ".*"
Create Selection cue in a separate cue list.applescript
set q_command of armCorrect to 20
Create Selection cue in a separate cue list.applescript