text
stringlengths 0
15.7k
| source
stringlengths 6
112
|
---|---|
move cue id midiBankID of parent of midiBank to end of sceneGroup
|
Create CLQL scene recall with name.applescript
|
set q name of midiBank to "Scene " & sceneNumber & ": Program Change"
|
Create CLQL scene recall with name.applescript
|
set q color of sceneGroup to userColor
|
Create CLQL scene recall with name.applescript
|
if colorParentGroups is TRUE
|
Create CLQL scene recall with name.applescript
|
set groupParent to parent of sceneGroup
|
Create CLQL scene recall with name.applescript
|
if q name of groupParent is cueListName then
|
Create CLQL scene recall with name.applescript
|
set q color of groupParent to userColor
|
Create CLQL scene recall with name.applescript
|
set groupParent to parent of groupParent
|
Create CLQL scene recall with name.applescript
|
collapse sceneGroup
|
Create CLQL scene recall with name.applescript
|
on calculateChan(num)
|
Create CLQL scene recall with name.applescript
|
set chan to integer
|
Create CLQL scene recall with name.applescript
|
if num is less than 129 then
|
Create CLQL scene recall with name.applescript
|
set chan to 1
|
Create CLQL scene recall with name.applescript
|
else if num is greater than 128 and num is less than 256 then
|
Create CLQL scene recall with name.applescript
|
set chan to 2
|
Create CLQL scene recall with name.applescript
|
else if num is greater than 255 and num is less than 383 then
|
Create CLQL scene recall with name.applescript
|
set chan to 3
|
Create CLQL scene recall with name.applescript
|
else if num is greater than 382 and num is less than 508 then
|
Create CLQL scene recall with name.applescript
|
set chan to 4
|
Create CLQL scene recall with name.applescript
|
return chan
|
Create CLQL scene recall with name.applescript
|
end calculateChan
|
Create CLQL scene recall with name.applescript
|
on calculateScene(num)
|
Create CLQL scene recall with name.applescript
|
set scene to integer
|
Create CLQL scene recall with name.applescript
|
set scene to num - 1
|
Create CLQL scene recall with name.applescript
|
set scene to num - 129
|
Create CLQL scene recall with name.applescript
|
set scene to num - 256
|
Create CLQL scene recall with name.applescript
|
set scene to num - 383
|
Create CLQL scene recall with name.applescript
|
return scene
|
Create CLQL scene recall with name.applescript
|
end calculateScene
|
Create CLQL scene recall with name.applescript
|
property changeContext : false --true/false; if true, set newContextName (below)
|
Clear Start and Due Dates.scpt
|
property newContextName : "Someday" --context the item will change to if changeContext = true
|
Clear Start and Due Dates.scpt
|
property showSummaryNotification : true --if true, will display success notifications
|
Clear Start and Due Dates.scpt
|
property useGrowl : true --if true (and showAlert is true), uses Growl for alerts
|
Clear Start and Due Dates.scpt
|
property dueDate : ""
|
Clear Start and Due Dates.scpt
|
if changeContext then set newContext to my getContext(newContextName)
|
Clear Start and Due Dates.scpt
|
if changeContext then set context of thisItem to newContext
|
Clear Start and Due Dates.scpt
|
set succeeded to my clearDate(thisItem)
|
Clear Start and Due Dates.scpt
|
set alertText to "Date(s) cleared for " & successTot & " item" & alertItemNum & "." as string
|
Clear Start and Due Dates.scpt
|
on getContext(contextName)
|
Clear Start and Due Dates.scpt
|
set contextID to id of item 1 of (complete contextName as context)
|
Clear Start and Due Dates.scpt
|
return first context whose id is contextID
|
Clear Start and Due Dates.scpt
|
end getContext
|
Clear Start and Due Dates.scpt
|
on clearDate(selectedItem)
|
Clear Start and Due Dates.scpt
|
set defer date of selectedItem to missing value
|
Clear Start and Due Dates.scpt
|
set due date of selectedItem to missing value
|
Clear Start and Due Dates.scpt
|
end clearDate
|
Clear Start and Due Dates.scpt
|
open location "https://www.happysocks.com/us/lily-rib-ankle-sock-4.html"
|
Magento - Add product and go to checkout - Production - US.applescript
|
repeat until (loading of front window's active tab is false)
|
Magento - Add product and go to checkout - Production - US.applescript
|
1 + 1
|
Magento - Add product and go to checkout - Production - US.applescript
|
execute front window's active tab javascript "document.querySelector('#product-addtocart-button').click();"
|
Magento - Add product and go to checkout - Production - US.applescript
|
execute front window's active tab javascript "document.querySelector('#top-cart-btn-checkout').click();"
|
Magento - Add product and go to checkout - Production - US.applescript
|
execute front window's active tab javascript "document.querySelector('[for=customer-email]').click();"
|
Magento - Add product and go to checkout - Production - US.applescript
|
set rand to (random number from 5 to 49) * 2
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "test"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke rand
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "@test"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke ".com"
|
Magento - Add product and go to checkout - Production - US.applescript
|
execute front window's active tab javascript "document.querySelector('[type=submit]').click(true);"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "Firstname"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "Lastname"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "Address"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "Street Nr"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "Address 2nd line"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "12345"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "City"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "a"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke "123456"
|
Magento - Add product and go to checkout - Production - US.applescript
|
keystroke (key code 36)
|
Magento - Add product and go to checkout - Production - US.applescript
|
set userDuration to 5 -- your preferred default fade duration
|
Create fades for selected.applescript
|
set newCues to {}
|
Create fades for selected.applescript
|
repeat with originalCue in theSelection
|
Create fades for selected.applescript
|
set selected to originalCue
|
Create fades for selected.applescript
|
set originalCueType to q type of originalCue
|
Create fades for selected.applescript
|
if originalCueType is in {"Audio", "Video", "Mic", "Fade"} then
|
Create fades for selected.applescript
|
set originalLevel to originalCue getLevel row 0 column 0
|
Create fades for selected.applescript
|
make type "Fade"
|
Create fades for selected.applescript
|
set theFade to last item of (selected as list)
|
Create fades for selected.applescript
|
set duration of theFade to userDuration
|
Create fades for selected.applescript
|
if originalCueType is in {"Audio", "Video", "Mic"} then
|
Create fades for selected.applescript
|
set cue target of theFade to originalCue
|
Create fades for selected.applescript
|
theFade setLevel row 0 column 0 db originalLevel
|
Create fades for selected.applescript
|
else if originalCueType is "Group" then
|
Create fades for selected.applescript
|
theFade setLevel row 0 column 0 db 0
|
Create fades for selected.applescript
|
else if originalCueType is "Fade" then
|
Create fades for selected.applescript
|
set cue target of theFade to (cue target of originalCue)
|
Create fades for selected.applescript
|
set end of newCues to theFade
|
Create fades for selected.applescript
|
set selected to newCues
|
Create fades for selected.applescript
|
set the clipboard to "IN"
|
Magento - Add redirect copy.applescript
|
tell current tab of first window
|
Magento - Add redirect copy.applescript
|
do JavaScript "document.querySelectorAll('label[for=request_path]')[0].click();"
|
Magento - Add redirect copy.applescript
|
do JavaScript "document.querySelectorAll('label[for=target_path]')[0].click();"
|
Magento - Add redirect copy.applescript
|
set the clipboard to "OUT"
|
Magento - Add redirect copy.applescript
|
keystroke "p"
|
Magento - Add redirect copy.applescript
|
keystroke "siggi"
|
Magento - Add redirect copy.applescript
|
do JavaScript "document.querySelector('#save').click();"
|
Magento - Add redirect copy.applescript
|
on waitUntilReady(d)
|
Run-Front-Script.applescript
|
repeat while execution state of d is not in {stopped, paused}
|
Run-Front-Script.applescript
|
end waitUntilReady
|
Run-Front-Script.applescript
|
set d to front document
|
Run-Front-Script.applescript
|
execute
|
Run-Front-Script.applescript
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.