| Author |
Message |
Forum: Support Topic: Problem calling Notepad++ macro with Autohotkey |
| Philister |
|
Posted: May 1st, 2012, 2:04 pm
|
|
Replies: 10 Views: 111
|
| Have you verified that pressing Shift + Control + n in Notepad++ actually does what it's supposed to do (conflict with NPP internal hotkey?)? Try Send, +^n or SendEvent +^n or SendEvent, {Ctrl Down}{Shift Down}n{Shift Up}{Ctrl Up}. Another idea! (I think I had the same problem with NPP once...): &qu... |
|
 |
Forum: Support Topic: How to turn off specific program sounds? |
| Philister |
|
Posted: May 1st, 2012, 11:19 am
|
|
Replies: 4 Views: 78
|
Maybe find the corresponding sound files on your HD and delete them - or replace with empty file with same name. Or try to intercept what triggers the sound in the program, set volume to 0, then send keys to go through with the trigger and reset volume to previous setting.
Be more specific? |
|
 |
Forum: Support Topic: Problem calling Notepad++ macro with Autohotkey |
| Philister |
|
Posted: May 1st, 2012, 11:15 am
|
|
Replies: 10 Views: 111
|
| I'm guessing {CTRLDOWN} is AutoIt notation. Try {Ctrl Down} instead and likewise for the other keys. |
|
 |
Forum: Support Topic: Environment variable not current - please help (PowerPro) |
| Philister |
|
Posted: April 25th, 2012, 6:34 pm
|
|
Replies: 1 Views: 35
|
| I'm trying to send a string from another program (PowerPro to be precise) to a permanently running AHK script by setting an environment variable and using postmessage from PowerPro / OnMessage in the script to call a function that sends the keys stored in the string to the active window via SendInpu... |
|
 |
Forum: Utilities Topic: Lexer and Folding For N++ (Finally!) |
| Philister |
|
Posted: April 4th, 2012, 2:54 pm
|
|
Replies: 88 Views: 26165
|
Quote: With the workaround in place, it's back to working perfectly; thanks again.
Err nope, not if you want to use code folding it isn't... This has been broken since NPP 5.9.3. ... |
|
 |
Forum: Scripts Topic: TypingAid v2.16b - Word AutoCompletion Utility |
| Philister |
|
Posted: April 1st, 2012, 7:03 am
|
|
Replies: 493 Views: 49281
|
| SendMethod=2 fixed it. Many thanks! |
|
 |
Forum: Scripts Topic: TypingAid v2.16b - Word AutoCompletion Utility |
| Philister |
|
Posted: March 31st, 2012, 8:42 pm
|
|
Replies: 493 Views: 49281
|
| I've downloaded and installed TypingAid, but so far have been unable to get it to actually send text to any input window. When I start typing a word, the list window pops up, but neither the numberkeys nor ^enter nor tab nor right arrow will send text after the list window closes. I'm using the late... |
|
 |
Forum: Issues Topic: Suggestions on documentation improvements |
| Philister |
|
Posted: March 23rd, 2012, 8:28 pm
|
|
Replies: 191 Views: 29829
|
| The help page for "KeyWait" should point out that (on USB keyboards only?) for the Apps_ and Media you need to wait for the logical state of the key instead of the physical state (i.e. use the L option). See this thread: http://www.autohotkey.com/forum/topic83600.html . Also, the page for ... |
|
 |
Forum: Support Topic: KeyWait doesn't work with any of the launch / media keys |
| Philister |
|
Posted: March 22nd, 2012, 8:03 pm
|
|
Replies: 4 Views: 301
|
| You're right, Lexikos, that works, but this info should definitely be added to the help file. The information there is misleading in this case: Under Windows NT/2k/XP and beyond, the physical state of a key or mouse button will usually be the same as the logical state unless the keyboard and/or mous... |
|
 |
Forum: Support Topic: KeyWait doesn't work with any of the launch / media keys |
| Philister |
|
Posted: March 18th, 2012, 8:43 pm
|
|
Replies: 4 Views: 301
|
| Doing entirely without keyhook isn't an option for most people as they will have plenty of hotkeys that require it. Here is my list of hotkeys - more than half of them seem to require the hook: k-hook AppsKey reg #C k-hook +^Insert k-hook ~LControl k-hook ~RControl k-hook ~LControl Up k-hook ~RContr... |
|
 |
Forum: Scripts Topic: SciTE4AutoHotkey v3.0.00 (RC1) [Updated 24/12/2011] |
| Philister |
|
Posted: March 12th, 2012, 7:35 am
|
|
Replies: 577 Views: 86000
|
@nfl: Autocomplete works fine for me and calltips are off. Perhaps you didn't see the space at the beginning of the regex expression? Leaving it out would delete most text in the file. With it in place only the first words are kept in the file.
Code: .+$
or maybe use
Code: \s.+$ |
|
 |
Forum: Scripts Topic: SciTE4AutoHotkey v3.0.00 (RC1) [Updated 24/12/2011] |
| Philister |
|
Posted: March 11th, 2012, 8:39 pm
|
|
Replies: 577 Views: 86000
|
| @nfl: edit the file ahk.api and do a regex replace of " .+$" (replace with empty field). Restart Scite. Voila. Make sure you backup your file in case you ever want calltips again, though I prefer to use the context sensitive help. |
|
 |
Forum: Utilities Topic: Lexer and Folding For N++ (Finally!) |
| Philister |
|
Posted: March 10th, 2012, 5:16 pm
|
|
Replies: 88 Views: 26165
|
| Since installing this lexer in 5.9.8, none of my user defined languages are highlighted anymore - everything in those files is just grey. Can anyone help fix this? |
|
 |
Forum: Support Topic: KeyWait doesn't work with any of the launch / media keys |
| Philister |
|
Posted: March 9th, 2012, 7:24 pm
|
|
Replies: 4 Views: 301
|
| This has been mentioned on the forum somewhere but was never fixed and has never been posted in here. Here is a bit of code for testing: #SingleInstance force #Persistent #NoEnv #InstallKeybdHook Browser_Back::gosub, TestKeyWait Browser_Forward::gosub, TestKeyWait Browser_Refresh::gosub, TestKeyWait... |
|
 |
Forum: Scripts Topic: HID/Extended input devices (MS Natural Keyboard 4000 etc.) |
| Philister |
|
Posted: March 7th, 2012, 1:11 am
|
|
Replies: 32 Views: 12327
|
|
 |
| Sort by: |