text
stringlengths 0
15.7k
| source
stringlengths 6
112
|
---|---|
storage failover show | cDOT%20Install%20Commands%20(8.1).scpt |
set cmdString to cmdString & thisSectionStr | cDOT%20Install%20Commands%20(8.1).scpt |
set thisSectionStr to "timezone -timezone " & timezone & " | cDOT%20Install%20Commands%20(8.1).scpt |
" & repeat_cmd_for_list("ntp server create –node <node> -server " & ntpServer1, "<node>", allNodesList) | cDOT%20Install%20Commands%20(8.1).scpt |
if (ntpServer2 is not equal to "") then set thisSectionStr to thisSectionStr & " | cDOT%20Install%20Commands%20(8.1).scpt |
" & repeat_cmd_for_list("ntp server create –node <node> -server " & ntpServer2, "<node>", allNodesList) | cDOT%20Install%20Commands%20(8.1).scpt |
ntp server show | cDOT%20Install%20Commands%20(8.1).scpt |
ntp config modify –enabled true | cDOT%20Install%20Commands%20(8.1).scpt |
ntp config show | cDOT%20Install%20Commands%20(8.1).scpt |
" & thisSectionStr | cDOT%20Install%20Commands%20(8.1).scpt |
set thisSectionStr to fgCmd & " | cDOT%20Install%20Commands%20(8.1).scpt |
net int modify -vserver " & clusterName & " -lif cluster_mgmt -home-node " & clusterName & "-01 -home-port " & mgmtIntClust & " -failover-policy nextavail -use-failover-group enabled -failover-group cluster_mgmt_fg | cDOT%20Install%20Commands%20(8.1).scpt |
" & setNodeFgCmd | cDOT%20Install%20Commands%20(8.1).scpt |
if (TenGbEString is not equal to "") then | cDOT%20Install%20Commands%20(8.1).scpt |
set thisSectionStr to repeat_cmd_for_list("net port modify -node <node> -port " & TenGbEString & " -flowcontrol-admin none", "<node>", allNodesList) | cDOT%20Install%20Commands%20(8.1).scpt |
" & aggrRenameCmd & " | cDOT%20Install%20Commands%20(8.1).scpt |
autosupport modify –node * -mail-hosts <%%asup_mailhost> -state enabled –from <%%asup_from> -to <%%asup_to> -support enable –transport <%%asup_transport> –partner address <%%asup_partner_address> | cDOT%20Install%20Commands%20(8.1).scpt |
autosupport invoke -node * -type all -message Install | cDOT%20Install%20Commands%20(8.1).scpt |
set new_window to make new Finder window | new_finder_window.applescript |
set userName to "" -- Username will appear next to Assignment name in parenthesis when created | MakeAssignments.applescript |
tell application "Adobe InDesign 2022" | MakeAssignments.applescript |
set docName to name of front document as string | MakeAssignments.applescript |
set docName2 to text 1 thru ((offset of "." in docName) - 1) of docName | MakeAssignments.applescript |
set userColor to gray | MakeAssignments.applescript |
set docRef to front document | MakeAssignments.applescript |
tell docRef | MakeAssignments.applescript |
set docPath to file path as string | MakeAssignments.applescript |
set storyPath to docPath & "Assignments:content:" | MakeAssignments.applescript |
set asgnPath to paragraphs of (read (choose file with prompt "Pick text file containing Assignment names")) | MakeAssignments.applescript |
repeat with nextLine in asgnPath | MakeAssignments.applescript |
set asgnName to nextLine | MakeAssignments.applescript |
set nextLine to docPath & docName2 & " Assignments:" & asgnName & ".icma" | MakeAssignments.applescript |
if not (exists assignment nextLine) then | MakeAssignments.applescript |
set asgnRef to make assignment with properties {name:asgnName, user name:userName, frame color:userColor, export options:assigned spreads, file path:nextLine} | MakeAssignments.applescript |
set asgnRef to assignment asgnName | MakeAssignments.applescript |
set icmlPath to storyPath & ".icml" --set icmlPath to storyPath & baseName & ".icml" | MakeAssignments.applescript |
set unasgnRef to assignment -1 | MakeAssignments.applescript |
set unasgnName to name of unasgnRef | MakeAssignments.applescript |
tell asgnRef to update | MakeAssignments.applescript |
on sendText(phone, message) | sendMessage.scpt |
end sendText | sendMessage.scpt |
sendText(phone, message) | sendMessage.scpt |
set theTitle to "アカウントの管理" | account_management.applescript |
set myList1 to {"Adobe ID", "Apple ID", "社内 サーバ(Basic認証)", "社内 メール(sample@example.net)", "社内 FTP(example.net)"} | account_management.applescript |
set myList2 to {{"ID: sample1", "パスワード: sample1", "メモ: sample1", ""}, {"ID: sample2", "パスワード: sample2", "メモ: sample2", ""}, {"ID: sample3", "パスワード: sample3", "メモ: sample3", ""}, {"ID: sample4", "パスワード: sample4", "メモ: sample4", ""}, {"ホスト or サーバ: sample5", "ユーザ: sample5", "パスワード: sample5", "メモ: sample5"}} | account_management.applescript |
set myDelimiter to ": " | account_management.applescript |
set listLength to length of myList1 | account_management.applescript |
set serialNumList to {} | account_management.applescript |
repeat with i from 1 to listLength | account_management.applescript |
set list1Item to item i of myList1 as string | account_management.applescript |
set list1Num to i as string | account_management.applescript |
set end of serialNumList to list1Num & myDelimiter & list1Item | account_management.applescript |
set selectAcc to (choose from list serialNumList with prompt "知りたい項目を選択" with title theTitle OK button name "OK" cancel button name "キャンセル") | account_management.applescript |
if selectAcc is false then | account_management.applescript |
if selectAcc is {item i of serialNumList as string} then | account_management.applescript |
set keyTitle to item i of myList1 as string | account_management.applescript |
set key1 to item 1 of item i of myList2 as string | account_management.applescript |
set key2 to item 2 of item i of myList2 as string | account_management.applescript |
set key3 to item 3 of item i of myList2 as string | account_management.applescript |
set key4 to item 4 of item i of myList2 as string | account_management.applescript |
set keyToral to key1 & return & key2 & return & key3 & return & key4 | account_management.applescript |
display dialog keyTitle default answer keyToral with title theTitle buttons {"OK"} default button "OK" | account_management.applescript |
set pheight to height of bounds | Box - to bottom of page.applescript |
set page_height to (word 1 of pheight as integer) | Box - to bottom of page.applescript |
tell current box | Box - to bottom of page.applescript |
set bheight to height of bounds | Box - to bottom of page.applescript |
set box_height to (word 1 of bheight as integer) | Box - to bottom of page.applescript |
set diff to page_height - box_height + 3 | Box - to bottom of page.applescript |
set top of bounds to diff | Box - to bottom of page.applescript |
set height of bounds to box_height | Box - to bottom of page.applescript |
key code 12 using {command down, control down} | mute and lock.scpt |
keystroke "MY" | f3.applescript |
if name of containing project of _sel is "Vision" then | Archive Vision Task.applescript |
set note of _sel to name of _sel & " (Archiving " & date string of (current date) & ")" & " | Archive Vision Task.applescript |
" & note of _sel | Archive Vision Task.applescript |
set name of _sel to argv | Archive Vision Task.applescript |
display notification "No vision tasks selected." | Archive Vision Task.applescript |
set windowCount to (count of the windows) | gistfile1 copy 11.applescript |
if windowCount is greater than 0 and first window is busy then | gistfile1 copy 11.applescript |
if windowCount is greater than 0 and first window is busy or windowCount is 0 then | gistfile1 copy 11.applescript |
click first menu item of first menu of second menu item of first menu of third menu bar item of first menu bar | gistfile1 copy 11.applescript |
do script "cd _forklift_path_placeholder_" in first window | gistfile1 copy 11.applescript |
my make_DayOne(noteName, note_Date, note_Text, noteLink, noteTags) | Export%20Evernote%20to%20Day%20One.scpt |
if dayHeader is true then set note_Text to (noteName & return & return & note_Text) | Export%20Evernote%20to%20Day%20One.scpt |
set check to name of every window | Start|Stop-Quicktime-Screen-Recording.applescript |
if check is {} then | Start|Stop-Quicktime-Screen-Recording.applescript |
set resultDocument to new screen recording | Start|Stop-Quicktime-Screen-Recording.applescript |
tell resultDocument | Start|Stop-Quicktime-Screen-Recording.applescript |
set resultDocument to first document whose name is "Screen Recording" | Start|Stop-Quicktime-Screen-Recording.applescript |
set homeFolder to (path to home folder as text) | workstation.scpt |
set cleanupAtStartupFolder to homeFolder & "Library:Caches:Cleanup At Startup:" as alias | workstation.scpt |
if not (exists folder "Transmit" of cleanupAtStartupFolder) then | workstation.scpt |
make new folder at cleanupAtStartupFolder with properties {name:"Transmit"} | workstation.scpt |
set transmitPath to homeFolder & "Library:Caches:Metadata:Transmit:" as alias | workstation.scpt |
set transmitCachePath to homeFolder & "Library:Caches:Cleanup At Startup:Transmit:" as alias | workstation.scpt |
set availableWorkspaces to {} | workstation.scpt |
set availableWorkspaceFiles to {} | workstation.scpt |
set transmitFiles to name of every file of transmitPath | workstation.scpt |
repeat with transmitFileName in transmitFiles | workstation.scpt |
set transmitFile to property list file (POSIX path of ((item transmitFileName of transmitPath) as alias)) | workstation.scpt |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.