| Author |
Message |
Topic: APPEND to clipboard with control +g [g = glue] |
drmurdoch
Replies: 2
Views: 191
|
Forum: Ask for Help Posted: Thu Mar 13, 2008 12:52 am Subject: here it is |
Control + g = append to clipboard.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed an ... |
Topic: APPEND to clipboard with control +g [g = glue] |
drmurdoch
Replies: 2
Views: 191
|
Forum: Ask for Help Posted: Thu Mar 13, 2008 12:24 am Subject: APPEND to clipboard with control +g [g = glue] |
everyone knows windows cut,copy,paste.
I'd like a glue function where the currently selected text is appended onto a new line to what is already in the clipboard.
I am hoping this is easy !
# ... |
Topic: NEW:clipboardMenu0.8:paste,edit,save last 20 clipboard items |
drmurdoch
Replies: 46
Views: 6403
|
Forum: Scripts & Functions Posted: Wed Mar 12, 2008 11:52 pm Subject: Great job - 2 suggestions. |
I really love your AHK script.
Two Feature suggestions:
(1) clear clips (blank them all)
(2) ability to paste multiple items at once. |
Topic: [script] TiddlyWikifier: create PrettyLinks from file paths |
drmurdoch
Replies: 5
Views: 500
|
Forum: Scripts & Functions Posted: Mon Mar 10, 2008 10:41 pm Subject: [script] TiddlyWikifier: create PrettyLinks from file paths |
| Yep, works great. |
Topic: [script] TiddlyWikifier: create PrettyLinks from file paths |
drmurdoch
Replies: 5
Views: 500
|
Forum: Scripts & Functions Posted: Mon Mar 10, 2008 3:48 am Subject: edited for bLADE wiki |
If(title = "")
tiddlyLink = [%filePath%]
Else
tiddlyLink = [[%filePath%][%title%]]
; copy PrettyLink to clipboard
Great script. Thank y ... |
Topic: [script] TiddlyWikifier: create PrettyLinks from file paths |
drmurdoch
Replies: 5
Views: 500
|
Forum: Scripts & Functions Posted: Mon Mar 10, 2008 3:36 am Subject: [script] TiddlyWikifier: create PrettyLinks from file paths |
I compiled it .. and put a shortcut to the .exe file.
and now it shows up in the Send To Menu.
... but its not working ..
or it is but super slow ? |
Topic: [script] TiddlyWikifier: create PrettyLinks from file paths |
drmurdoch
Replies: 5
Views: 500
|
Forum: Scripts & Functions Posted: Mon Mar 10, 2008 3:26 am Subject: [script] TiddlyWikifier: create PrettyLinks from file paths |
I can't seem to add the shortcut to the .ahk script in the Windows Send To.
should I reboot ?
====for bLADE wiki ===
Else
tiddlyLink = [[%title%][%filePath%]]
==============+== |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Fri Feb 22, 2008 5:29 am Subject: what is the code for pressing F11 and sending the Clipboard? |
i am waiting for a screen.
I think it popups up unmaximized sometimes.
or the on screen control + F11 sticks.
annoying.
http://i272.photobucket.com/albums/jj173/digitaldoctor/ahkbridgebetwee ... |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Fri Feb 22, 2008 4:44 am Subject: what is the code for pressing F11 and sending the Clipboard? |
Send {F11} ;F11 key
delay = 600 ;Wait for application.
Send %PersonName% ;"Type" (not paste) the string into the application (ie. not just paste).
Clipboard := ClipSaved
Return
-- alm ... |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 9:55 am Subject: what is the code for pressing F11 and sending the Clipboard? |
| seems to work but Send F11 doesn't trigger my ESP app. |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 9:09 am Subject: what is the code for pressing F11 and sending the Clipboard? |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#Persistent
^F11: ... |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 8:45 am Subject: what is the code for pressing F11 and sending the Clipboard? |
Typical Entry
10:00 Potter, Harry 0 follow up ON 266012096 9999
0 is the zero |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 8:39 am Subject: what is the code for pressing F11 and sending the Clipboard? |
;Press control+F11 to execute the script (key text is highlighted).
^F11::
;Copy everything to clipboard
^c
;Save the Clipboard as a variable
ClipSaved := ClipboardAll
;Find the first charcter ... |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 8:35 am Subject: From Titan |
| It can all be done using the commands: FileAppend, StringMid, StringReplace, Send, WinWait, ControlSend/send, EnvAdd. |
Topic: what is the code for pressing F11 and sending the Clipboard? |
drmurdoch
Replies: 12
Views: 242
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 8:33 am Subject: Forgot some parts |
from my older post-
Copy everything to clipboard (before the script)
Press control+F11 to execute the script
Save the Clipboard.
Find the first charcter that is the number 0, then copy e ... |
| |