This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phraseology://x-callback-url/create? | |
title=[name]& | |
text=[text] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phraseology://x-callback-url/create? | |
title=[prompt-text:Document Name]& | |
text=[dropbox-text] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
texttool://x-callback-url/transform? | |
text=[clipboard]& | |
method=encode& | |
x-success={{command-c://x-callback-url/copyText? | |
deviceName=[list:Device|iPad 2=Eric Pramono's iPad|iPad Mini=Philip's iPad Mini]& | |
text=launch%3A%2F%2Fimport%3Furl%3D%5B%5Boutput%5D%5D}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
launch://x-callback-url/speak? | |
text={[TEXT-SELECTED]}& | |
speed=0.2& | |
x-success={mrreader://skip-sync} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
launch://speak?text=&speed= | |
launch://define?text= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
launch://x-callback-url/dropbox/new? | |
text=[clipboard]& | |
path=%2FPublic& | |
name=<xdts>.txt& | |
getlink=YES& | |
x-success={{launch://?url= | |
tweetbot%3A%2F%2Fepramono%2Fpost%3Ftext%3D%5Bclipboard%5D}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
launch://dropbox/new?text=&path=&name= | |
launch://dropbox/append?text=&path=&name= | |
launch://dropbox/prepend?text=&path=&name= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set theActiveURL to "" | |
tell application "Safari" | |
set theActiveWindow to first window | |
set theActiveTab to current tab of theActiveWindow | |
set theDecodedURL to URL of theActiveTab as string | |
set theActiveURL to my urlencode(theDecodedURL) as string | |
end tell | |
tell application "System Events" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "System Events" | |
set theDevice to my urlencode("Eric Pramono’s iPhone") as string | |
set theQuery to my urlencode("{query}") as string | |
set theURL to "command-c://x-callback-url/copyText?deviceName=" & theDevice & "&text=felix%3A%2F%2Fcompose%2Fpost%3Ftext%3D" & my urlencode(theQuery) | |
open location theURL | |
end tell | |
on urlencode(theurl) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "System Events" | |
set theDevice to my urlencode("Eric Pramono’s iPhone") as string | |
set theQuery to my urlencode("{query}") as string | |
set theURL to "command-c://x-callback-url/copyText?deviceName=" & theDevice & "&text=momento%3A%2F%2Fcommand%2Fnewmoment%3Ftext%3D" & my urlencode(theQuery) | |
open location theURL | |
end tell | |
on urlencode(theurl) |