| Author |
Message |
Topic: solved: mouse gestures | solved: unwanted right click |
TOTAL
Replies: 6
Views: 170
|
Forum: Ask for Help Posted: Sat Jun 14, 2008 8:06 pm Subject: solved: mouse gestures | solved: unwanted right click |
| Yes. Thanks! |
Topic: solved: mouse gestures | solved: unwanted right click |
TOTAL
Replies: 6
Views: 170
|
Forum: Ask for Help Posted: Fri Jun 13, 2008 10:59 pm Subject: solved: mouse gestures | solved: unwanted right click |
Here is a solution
~RButton & LButton:: send {Browser_Back}
It works in opera, Firefox and Windows explorer, but there is still the issue with right click menu popping up.
... |
Topic: solved: mouse gestures | solved: unwanted right click |
TOTAL
Replies: 6
Views: 170
|
Forum: Ask for Help Posted: Fri Jun 13, 2008 10:27 pm Subject: solved: mouse gestures | solved: unwanted right click |
Thanks.
this ` does it, but from the behaviour in windows explorer I guess, send {Alt} {Tab}, sends them one after another.
I think so because instead of moving back to the previous page, " ... |
Topic: solved: mouse gestures | solved: unwanted right click |
TOTAL
Replies: 6
Views: 170
|
Forum: Ask for Help Posted: Fri Jun 13, 2008 10:14 pm Subject: solved: mouse gestures | solved: unwanted right click |
I want to have basic Opera's mouse gesture functionality in other programs too, that is
replace
leftbutton+rightbutton
with
alt+left
and rightbutton + leftbutton
with
alt+right
Th ... |
Topic: double capslock to close a window |
TOTAL
Replies: 2
Views: 103
|
Forum: Ask for Help Posted: Tue Jun 03, 2008 9:04 pm Subject: double capslock to close a window |
Had to do something to prevent the change of the state of caps.
Thanks!
CapsLock::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500)
{
M ... |
Topic: double capslock to close a window |
TOTAL
Replies: 2
Views: 103
|
Forum: Ask for Help Posted: Tue Jun 03, 2008 11:39 am Subject: double capslock to close a window |
capslock::
keywait capslock
keywait capslock,d t0.5
if errorlevel
return
MouseClick, left, 1019, 37
return
responds to double capslock, but renders the key's original funct ... |
Topic: Ableton Live users - hotkey to open plug-in's GUI |
TOTAL
Replies: 0
Views: 64
|
Forum: Ask for Help Posted: Tue May 06, 2008 2:19 am Subject: Ableton Live users - hotkey to open plug-in's GUI |
Is there a way to use a hotkey to open plug-in's GUI?
Unfortunately this tiny button is not in always fixed position. |
Topic: strange space issue |
TOTAL
Replies: 0
Views: 174
|
Forum: Bug Reports Posted: Mon Apr 14, 2008 4:43 pm Subject: strange space issue |
When I opened an ahk file in pspad editor with dedicated syntax I noticed that command when after a double colon lights up as a recognized unit when there is a space after the double colon.
Follo ... |
Topic: dedicated AHK editor |
TOTAL
Replies: 1
Views: 224
|
Forum: General Chat Posted: Mon Mar 31, 2008 4:27 am Subject: dedicated AHK editor |
| Is there any editor which colors the ahk code, similarly to what html editors do? |
Topic: break loop ifwinactive |
TOTAL
Replies: 2
Views: 164
|
Forum: Ask for Help Posted: Mon Mar 31, 2008 4:23 am Subject: break loop ifwinactive |
Hi
In a program there are two windows: window one and window two.
In window one I want capslock to trigger a simple loop, until capslock released.
And it works fine. But occasionally the su ... |
Topic: Count a doubleclick |
TOTAL
Replies: 10
Views: 774
|
Forum: Ask for Help Posted: Sat Mar 29, 2008 9:45 pm Subject: Count a doubleclick |
Here we go. I have adapted Lexicos's code for mouse click
~LButton::
KeyWait, LButton ; wait for click to be released
KeyWait, LButton, D T0.2 ; and pressed again with ... |
Topic: CapsLock press-and-leave |
TOTAL
Replies: 0
Views: 130
|
Forum: Ask for Help Posted: Sat Mar 29, 2008 3:15 am Subject: CapsLock press-and-leave |
~F2::
MouseClick, left, 105, 558
MouseGetPos, xpos, ypos
MouseClick, left, 18, 206
SEND, {ENTER}
MouseMove, xpos, ypos, 0
return
works well, but you have to hold F2 ... |
Topic: Count a doubleclick |
TOTAL
Replies: 10
Views: 774
|
Forum: Ask for Help Posted: Sat Mar 29, 2008 2:33 am Subject: Count a doubleclick |
Thanks Jaco
I have adapted the code.
LButton::
if counter >= 0
{
counter++
return
}
counter = 0
setTimer,keywait, 250
... |
Topic: Count a doubleclick |
TOTAL
Replies: 10
Views: 774
|
Forum: Ask for Help Posted: Sat Mar 29, 2008 12:51 am Subject: Count a doubleclick |
hi
The code works great, but how to make double click "natural" function in a program to get replaced REPLACED by a function of your choice?
Thanks
T |
Topic: This forum's code expand feature |
TOTAL
Replies: 1
Views: 284
|
Forum: General Chat Posted: Thu Mar 20, 2008 12:19 am Subject: This forum's code expand feature |
Definitely off topic.
I like the Code Expand as it is done in this forum because
you can expand by clicking on a part of the wrapped code, too
it works flawlessly in Opera browser.
Could any ... |
| |