| Author |
Message |
Topic: Prevent doubleclicks |
FabianBengtsson
Replies: 4
Views: 279
|
Forum: Ask for Help Posted: Sun Sep 06, 2009 11:03 pm Subject: Prevent doubleclicks |
EDIT: scrap the earlier idea, this seems to work:
LButton::
Click, Left
Return
LButton Up::
Hotkey, LButton, Off
Sleep, 500
Hotkey, LButton, On
Return
Although the 500ms ... |
Topic: Prevent doubleclicks |
FabianBengtsson
Replies: 4
Views: 279
|
Forum: Ask for Help Posted: Sun Sep 06, 2009 10:36 pm Subject: Prevent doubleclicks |
Hello Im trying to a script that prevents doubleclicks (unintentional spasmic clicks etc. )
What I want is :
When a Lbutton click i registered the left button should be freezed for 500 ms.
Th ... |
Topic: Vista Audio Control Functions v2.1 |
FabianBengtsson
Replies: 148
Views: 47145
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 3:49 pm Subject: Vista Audio Control Functions v2.1 |
I possible, in some way, to set the volume/mute a specified application with this script ?
For example if you want to set volume of foobar music player, could you do something like this?
VA_SetM ... |
Topic: Control (master) volume with your scrollwheel [VISTA]+[XP] |
FabianBengtsson
Replies: 0
Views: 786
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 2:45 pm Subject: Control (master) volume with your scrollwheel [VISTA]+[XP] |
I noticed that my old script to control the volume in vista did not work properly so I made a rewrite using Vista Audio Control Functions.
Here is the simple script:
Usage:Hold the windows button ... |
Topic: Amun v1.45 - Powerful privacy software |
FabianBengtsson
Replies: 40
Views: 7604
|
Forum: Scripts & Functions Posted: Wed Aug 29, 2007 2:16 pm Subject: Amun v1.45 - Powerful privacy software |
| Nice script! Why not show the source? |
Topic: Prevent double wheelclicks |
FabianBengtsson
Replies: 5
Views: 663
|
Forum: Ask for Help Posted: Wed Aug 29, 2007 2:13 pm Subject: Prevent double wheelclicks |
something like this:
*$MButton::
TCdelay = 500
TCnow := A_TickCount - M_TickCount
M_TickCount := A_TickCount
if ((TCnow) > TCdelay)
send {blin ... |
Topic: Prevent double wheelclicks |
FabianBengtsson
Replies: 5
Views: 663
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 9:22 pm Subject: Prevent double wheelclicks |
Thank you it worked.
*$MButton::
TCdelay = 500
TCnow := A_TickCount - ( 0 M_TickCount )
M_TickCount := A_TickCount
if ((TCnow) > TCdelay)
... |
Topic: Prevent double wheelclicks |
FabianBengtsson
Replies: 5
Views: 663
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 7:35 pm Subject: Prevent double wheelclicks |
I have problem, when I wheelclick the mouse often recognize it as double wheelclick, becuase it's so sensitive. This is annoying when I browsing as it open a duplicate tab.
Is there a way to prevent ... |
Topic: Star google talk into tray? [SOLVED] |
FabianBengtsson
Replies: 3
Views: 1727
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 7:19 pm Subject: Star google talk into tray? [SOLVED] |
How do I start google talk minimized to tray?
I tried this line (which is stated in the registry at current user\run ) but it does not work?
Run, "C:\Program Files\Google\Google Talk\googleta ... |
Topic: Following a text cursor with the mouse pointer...possible? |
FabianBengtsson
Replies: 15
Views: 1310
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 6:22 pm Subject: Following a text cursor with the mouse pointer...possible? |
I had kind of the same issue but I solved it another way. When you start typing the mouse gets disabled and when you stop typing it renables.
http://www.autohotkey.com/forum/viewtopic.php?t=15816 |
Topic: Disable mouse while typing |
FabianBengtsson
Replies: 2
Views: 716
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 3:28 pm Subject: Disable mouse while typing |
thx.. I found a way on my own as well:
loop {
Input, SingleKey,I V L1
BlockInput, MouseMove
SetTimer, MouseOn, 500 ; Set mouselock timeout. Eg. the time it takes to move your hand from th ... |
Topic: Solution - Blocking Ctrl+Alt+Delete |
FabianBengtsson
Replies: 28
Views: 23398
|
Forum: Scripts & Functions Posted: Wed Jan 17, 2007 2:38 pm Subject: Solution - Blocking Ctrl+Alt+Delete |
You can also force closing of taskmanager(s).
#Persistent
#NoTrayIcon
SetTimer, CloseEscapeAttempts, 250
return
CloseEscapeAttempts:
Process, Exist, PROCEXP.EXE
If ( errorlevel ... |
Topic: Disable mouse while typing |
FabianBengtsson
Replies: 2
Views: 716
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 12:09 pm Subject: Disable mouse while typing |
Im a greenie on this and Im trying to a script that disable mouseinput (actually a touchpad) when you are typing.
I think the pseudocode will look something like this:
loop
{
If key ... |
Topic: Help with timers! |
FabianBengtsson
Replies: 6
Views: 522
|
Forum: Ask for Help Posted: Tue Nov 14, 2006 5:09 pm Subject: Help with timers! |
and I got working now like wantedSo would you mind to show us your outcome? I' (and toralf too) m(ight be) interested what you've accomplished.
Sure
#x::
SetTimer, 10mWarning, 600 ... |
Topic: Help with timers! |
FabianBengtsson
Replies: 6
Views: 522
|
Forum: Ask for Help Posted: Tue Nov 14, 2006 4:15 pm Subject: Help with timers! |
Ok.. Thank you!
what you posted wasn't exactly what I was looking for but it helped me on the right way, and I got working now like wanted. |
| |