Search found 8 matches
- 23 Nov 2019, 14:16
- Forum: Ask For Help
- Topic: Pasting a Tab space
- Replies: 4
- Views: 180
Re: Pasting a Tab space
Doesn't do anything.
- 23 Nov 2019, 07:17
- Forum: Ask For Help
- Topic: Pasting a Tab space
- Replies: 4
- Views: 180
Re: Pasting a Tab space
Thank you. Unfortunately, those codes work in most text editors, but not in the particular program I need the function for: Onenote. The first code does nothing, the other codes create a table, which is default Onenote behavior when pressing Tab. It seems to be Onenote's fault, though, as attempting...
- 23 Nov 2019, 02:17
- Forum: Ask For Help
- Topic: Pasting a Tab space
- Replies: 4
- Views: 180
Pasting a Tab space
Let's say I need to make it so that whenever I press Alt + A, my script pastes a Tab space in the current text editor. I tried this code, but it doesn't paste anything:
How can I get this to work?
Code: Select all
!A::
{
Clipboard = %A_Tab%
Send ^v
}
- 09 Oct 2019, 01:48
- Forum: Bug Reports
- Topic: AutoHotkey cannot override default Windows hotkeys anymore
- Replies: 4
- Views: 886
- 03 Oct 2019, 19:01
- Forum: Bug Reports
- Topic: AutoHotkey cannot override default Windows hotkeys anymore
- Replies: 4
- Views: 886
Re: AutoHotkey cannot override default Windows hotkeys anymore
Thanks for the responses. try converting it into a hook hotkey #i:: though i have to say, ur original snippet worked for me on the latest windows/ahk versions just fine(without opening the settings pane). ran as admin Hook hotkey? Not a bug, afaics - probably rather a question of permissions and ele...
- 02 Oct 2019, 19:43
- Forum: Bug Reports
- Topic: AutoHotkey cannot override default Windows hotkeys anymore
- Replies: 4
- Views: 886
AutoHotkey cannot override default Windows hotkeys anymore
EDIT: Sorry, false alarm.
- 03 Jun 2019, 21:08
- Forum: Ask For Help
- Topic: Bug?
- Replies: 4
- Views: 384
Re: Bug?
I found out the root of the issue. In the same script, I had this code: 1:: Send, {F6}{Numpad1} Return For some reason, pressing right shift + F1 executed that function, but left shift + F1 didn't. Any ideas why that is and how to fix it? I would like the Shift & F1 function to send shift + 1 all th...
- 03 Jun 2019, 17:56
- Forum: Ask For Help
- Topic: Bug?
- Replies: 4
- Views: 384
Bug?
Let's say I want to make it so that whenever I press shift + F1, AHK sends shift + 1. So pressing shift + F1 in Notepad should write "!". I tried the following code: Shift & F1:: Send, +1 Return ...and it only works partially. Left shift + F1 writes "!", but right shift + F1 writes "1" (no shift) in...