| Author |
Message |
Topic: Autocad using caps lock! |
Rainy-Day
Replies: 0
Views: 655
|
Forum: Ask for Help Posted: Fri Nov 03, 2006 4:58 pm Subject: Autocad using caps lock! |
| Hi, I have caps lock set up to press escape and scroll lock to turn on caps lock and pause to turn it off. That works well everywhere except that in Autocad, when caps lock is off, when you try to edi ... |
Topic: Two shortcuts active at once? |
Rainy-Day
Replies: 8
Views: 631
|
Forum: Ask for Help Posted: Wed Sep 13, 2006 8:35 pm Subject: Two shortcuts active at once? |
| I knew about #include but I thought return works like it does in Python, where you can have some statements, then a function def ending with a return, then some more statements, etc etc, and return me ... |
Topic: Two shortcuts active at once? |
Rainy-Day
Replies: 8
Views: 631
|
Forum: Ask for Help Posted: Wed Sep 13, 2006 3:40 pm Subject: Two shortcuts active at once? |
| I have a further question... I tried the method of using includes and when I put them into my original scripts, on a shortcut they do come up but they're missing all the buttons and gui options that a ... |
Topic: Two shortcuts active at once? |
Rainy-Day
Replies: 8
Views: 631
|
Forum: Ask for Help Posted: Wed Sep 13, 2006 3:33 pm Subject: Two shortcuts active at once? |
| Toralf, thanks, but I have a question: I need to gosub to functions defined in the included files, therefore it seems to me that your method won't work because I can't go to functions inside the funct ... |
Topic: Two shortcuts active at once? |
Rainy-Day
Replies: 8
Views: 631
|
Forum: Ask for Help Posted: Wed Sep 13, 2006 2:14 pm Subject: Two shortcuts active at once? |
| Great! I didn't even think about #include... Glad I asked, I was almost decided just to move them alltogether...... that would suck. |
Topic: Two shortcuts active at once? |
Rainy-Day
Replies: 8
Views: 631
|
Forum: Ask for Help Posted: Wed Sep 13, 2006 1:49 pm Subject: Two shortcuts active at once? |
| I have multiple gui's running on the system in a hidden state. When I press a hotkey, I want one of them unhidden depending on which window is active at the time; e.g. if Xplorer is active, one gui is ... |
Topic: Quick Toolbar |
Rainy-Day
Replies: 10
Views: 3065
|
Forum: Scripts & Functions Posted: Tue Sep 12, 2006 8:19 pm Subject: Quick Toolbar |
Thanks AHK  |
Topic: Quick Toolbar |
Rainy-Day
Replies: 10
Views: 3065
|
Forum: Scripts & Functions Posted: Tue Sep 12, 2006 7:44 pm Subject: Quick Toolbar |
| I posted a new much improved option and a screenshot. It will now work very quickly and only in the target window & it will work by holding the mouse down and releasing it over the button you need ... |
Topic: Shortcut taking too long sometimes? |
Rainy-Day
Replies: 3
Views: 525
|
Forum: Ask for Help Posted: Tue Sep 12, 2006 4:48 pm Subject: Shortcut taking too long sometimes? |
I figured out & fixed the original problem..
The issue was that I was destroying the gui after sending the shortcut. This slows down the system, even though it's not reflected on cpu meter (it ... |
Topic: Shortcut taking too long sometimes? |
Rainy-Day
Replies: 3
Views: 525
|
Forum: Ask for Help Posted: Tue Sep 12, 2006 3:38 pm Subject: Doesn't work at all! |
It doesn't work at all with ControlSend...
ButtonZmin:
SetTitleMatchMode, 2
ControlSend , ahk_parent, ^+5, CAD 200
ExitApp
I tried also without ahk_parent, and that doesn't work either... ... |
Topic: Shortcut taking too long sometimes? |
Rainy-Day
Replies: 3
Views: 525
|
Forum: Ask for Help Posted: Tue Sep 12, 2006 2:21 pm Subject: Shortcut taking too long sometimes? |
Hi, this is very puzzling to me..
I have a shorcut set up in Autocad to zoom out on ctrl-shift-5 - ^+5. I have many other shortcuts set up there as well. If I use them from Autocad directly, they a ... |
Topic: GetKeyState not working right.. |
Rainy-Day
Replies: 4
Views: 581
|
Forum: Ask for Help Posted: Sat Sep 09, 2006 10:39 pm Subject: GetKeyState not working right.. |
Amazing! it works, at last. And I was almost sure it's impossible. Thanks a ton . I don't really understand how it works though. I will play with it later tonight and I maybe will ask you question ... |
Topic: GetKeyState not working right.. |
Rainy-Day
Replies: 4
Views: 581
|
Forum: Ask for Help Posted: Sat Sep 09, 2006 3:01 pm Subject: GetKeyState not working right.. |
| The way you use it, it works because the right button is pressed while the script is running. That works for me, too. The problem comes up when the button is pressed and held before the script runs; ... |
Topic: GetKeyState not working right.. |
Rainy-Day
Replies: 4
Views: 581
|
Forum: Ask for Help Posted: Fri Sep 08, 2006 5:50 pm Subject: GetKeyState not working right.. |
Unless I'm mistaken, GetKeyState isn't working right.. I'm using this code:
Loop {
Dn:=GetkeyState("RButton","P")
IfEqual,Dn,0, Break
}
Click
I do a right click which ... |
Topic: RButton not working? |
Rainy-Day
Replies: 3
Views: 417
|
Forum: Ask for Help Posted: Mon Sep 04, 2006 8:24 pm Subject: RButton not working? |
| Yay, that fixed it.. thx msgbox! |
| |