text
stringlengths 0
15.7k
| source
stringlengths 6
112
|
---|---|
display notification ¬
|
Fixxxer.applescript
|
"All prefixes removed." with title "Fixxxer"
|
Fixxxer.applescript
|
end removePrefixes
|
Fixxxer.applescript
|
set playbackOptions to {"STOP", "Full Range", "80 Hz", "160 Hz", "500 Hz", "1k2 Hz", "4 kHz"}
|
Speaker Polarity Check.applescript
|
set polarityCheck to choose from list playbackOptions with title "Sample Selection" with prompt "Select the sample to play"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"STOP"} then
|
Speaker Polarity Check.applescript
|
if cue "SPC" is running then
|
Speaker Polarity Check.applescript
|
stop cue "SPC"
|
Speaker Polarity Check.applescript
|
else if polarityCheck is false then
|
Speaker Polarity Check.applescript
|
display dialog "Invert signal?" buttons {"Yes", "No"} default button "No"
|
Speaker Polarity Check.applescript
|
set invertCheck to button returned of result
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"Full Range"} then set cueNum to "All"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"80 Hz"} then set cueNum to "80"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"160 Hz"} then set cueNum to "160"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"500 Hz"} then set cueNum to "500"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"1k2 Hz"} then set cueNum to "1k2"
|
Speaker Polarity Check.applescript
|
if polarityCheck is {"4 Khz"} then set cueNum to "4k"
|
Speaker Polarity Check.applescript
|
if invertCheck is "Yes" then set cuePrefix to "i"
|
Speaker Polarity Check.applescript
|
if invertCheck is "No" then set cuePrefix to "n"
|
Speaker Polarity Check.applescript
|
set fullCueNumber to cuePrefix & cueNum as string
|
Speaker Polarity Check.applescript
|
if cue fullCueNumber is running then
|
Speaker Polarity Check.applescript
|
start cue fullCueNumber
|
Speaker Polarity Check.applescript
|
set y2 to displayHeight
|
Right Third.applescript
|
set x1 to dockSize + 2 * (displayWidth - dockSize) / 3
|
Right Third.applescript
|
set x2 to displayWidth
|
Right Third.applescript
|
set mdURL to "[" & title of i & "|" & URL of i & "]"
|
Current URL to clipboard jira copy 3.applescript
|
set the clipboard to mdURL
|
Current URL to clipboard jira copy 3.applescript
|
property tagName : "due"
|
UniversalDatecodeChanger.applescript
|
property incrementDate : true
|
UniversalDatecodeChanger.applescript
|
property changeAmount : 1
|
UniversalDatecodeChanger.applescript
|
property changeUnit : days
|
UniversalDatecodeChanger.applescript
|
tell selected entry
|
UniversalDatecodeChanger.applescript
|
set theTags to every tag
|
UniversalDatecodeChanger.applescript
|
set wantedTag to null
|
UniversalDatecodeChanger.applescript
|
repeat with aTag in theTags
|
UniversalDatecodeChanger.applescript
|
if (name of aTag is tagName) then
|
UniversalDatecodeChanger.applescript
|
set wantedTag to aTag
|
UniversalDatecodeChanger.applescript
|
if wantedTag is not null then
|
UniversalDatecodeChanger.applescript
|
set wantedTagValue to (value of wantedTag)
|
UniversalDatecodeChanger.applescript
|
set tagDate to my datecodeToDate(wantedTagValue)
|
UniversalDatecodeChanger.applescript
|
if tagDate is not null then
|
UniversalDatecodeChanger.applescript
|
if incrementDate is true then
|
UniversalDatecodeChanger.applescript
|
set tagDate to tagDate + changeAmount * changeUnit
|
UniversalDatecodeChanger.applescript
|
set tagDate to tagDate - changeAmount * changeUnit
|
UniversalDatecodeChanger.applescript
|
set newDatecode to my dateToDatecode(tagDate)
|
UniversalDatecodeChanger.applescript
|
set value of wantedTag to newDatecode
|
UniversalDatecodeChanger.applescript
|
on datecodeToDate(dateText)
|
UniversalDatecodeChanger.applescript
|
set vDate to null
|
UniversalDatecodeChanger.applescript
|
set oldASTIDs to AppleScript's text item delimiters
|
UniversalDatecodeChanger.applescript
|
set AppleScript's text item delimiters to {"-"}
|
UniversalDatecodeChanger.applescript
|
if (count of text item of dateText) is 3 then
|
UniversalDatecodeChanger.applescript
|
set vYear to text item 1 of dateText
|
UniversalDatecodeChanger.applescript
|
set vMonth to text item 2 of dateText
|
UniversalDatecodeChanger.applescript
|
set vDay to text item 3 of dateText
|
UniversalDatecodeChanger.applescript
|
if (vYear > 1000) and (vMonth > 0 and vMonth < 13) and (vDay > 0 and vDay < 32) then
|
UniversalDatecodeChanger.applescript
|
set vDate to current date
|
UniversalDatecodeChanger.applescript
|
set year of vDate to (vYear as integer)
|
UniversalDatecodeChanger.applescript
|
set month of vDate to vMonth as integer
|
UniversalDatecodeChanger.applescript
|
set day of vDate to vDay as integer
|
UniversalDatecodeChanger.applescript
|
set time of vDate to 0
|
UniversalDatecodeChanger.applescript
|
set AppleScript's text item delimiters to oldASTIDs
|
UniversalDatecodeChanger.applescript
|
return vDate
|
UniversalDatecodeChanger.applescript
|
end datecodeToDate
|
UniversalDatecodeChanger.applescript
|
on dateToDatecode(vDate)
|
UniversalDatecodeChanger.applescript
|
set dText to ((year of vDate) as text) & "-"
|
UniversalDatecodeChanger.applescript
|
set dayText to (month of vDate as number) as text
|
UniversalDatecodeChanger.applescript
|
if length of dayText is 1 then
|
UniversalDatecodeChanger.applescript
|
set dayText to "0" & dayText
|
UniversalDatecodeChanger.applescript
|
set dText to dText & dayText & "-"
|
UniversalDatecodeChanger.applescript
|
set dayText to (day of vDate as number) as text
|
UniversalDatecodeChanger.applescript
|
return dText & dayText
|
UniversalDatecodeChanger.applescript
|
end dateToDatecode
|
UniversalDatecodeChanger.applescript
|
set Christmas to (current date)
|
christmas.applescript
|
set month of Christmas to December
|
christmas.applescript
|
set day of Christmas to 25
|
christmas.applescript
|
linefeed & "Christmas this year will be on a " & weekday of Christmas & "."
|
christmas.applescript
|
set application_alias to application file id "com.apple.addressbook" as alias
|
Script 16-2.applescript
|
set icon_file to path to resource "vCard.icns" in bundle application_alias
|
Script 16-2.applescript
|
display dialog "Who Are You?" with icon icon_file
|
Script 16-2.applescript
|
global std, usr
|
zoom-window.applescript
|
set thisCaseId to "zoom-window-spotCheck"
|
zoom-window.applescript
|
Manual: Close Home Window (Screen Sharing/Non Sharing)
|
zoom-window.applescript
|
Manual: Toggle Always on Top
|
zoom-window.applescript
|
Manual: Turn On Always on Top
|
zoom-window.applescript
|
Manual: Turn Off Always on Top
|
zoom-window.applescript
|
set sut to std's import("zoom")'s new()
|
zoom-window.applescript
|
sut's bringWindowToFront
|
zoom-window.applescript
|
set sut to decorate(sut)
|
zoom-window.applescript
|
sut's closeHomeWindow()
|
zoom-window.applescript
|
sut's toggleAlwaysOnTop()
|
zoom-window.applescript
|
sut's turnOnAlwaysOnTop()
|
zoom-window.applescript
|
sut's turnOffAlwaysOnTop()
|
zoom-window.applescript
|
on newSpotBase()
|
zoom-window.applescript
|
script SpotBaseInstance
|
zoom-window.applescript
|
property template : missing value
|
zoom-window.applescript
|
end newSpotBase
|
zoom-window.applescript
|
on decorate(mainScript)
|
zoom-window.applescript
|
script ZoomInstance
|
zoom-window.applescript
|
property parent : mainScript
|
zoom-window.applescript
|
on closeNonMeetingWindows()
|
zoom-window.applescript
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.