| Author |
Message |
Topic: Vista Audio Control Functions v2.0 |
FabianBengtsson
Replies: 52
Views: 5783
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 4:49 pm Subject: Vista Audio Control Functions v2.0 |
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: 198
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 3: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: 4445
|
Forum: Scripts & Functions Posted: Wed Aug 29, 2007 3:16 pm Subject: Amun v1.45 - Powerful privacy software |
| Nice script! Why not show the source? |
Topic: Prevent double wheelclicks |
FabianBengtsson
Replies: 5
Views: 313
|
Forum: Ask for Help Posted: Wed Aug 29, 2007 3: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: 313
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 10: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: 313
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 8: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: 1
Views: 229
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 8: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: 579
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 7: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: 279
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 4: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: 17
Views: 5932
|
Forum: Scripts & Functions Posted: Wed Jan 17, 2007 3: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: 279
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 1: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: 232
|
Forum: Ask for Help Posted: Tue Nov 14, 2006 6: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: 232
|
Forum: Ask for Help Posted: Tue Nov 14, 2006 5: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. |
Topic: Help with timers! |
FabianBengtsson
Replies: 6
Views: 232
|
Forum: Ask for Help Posted: Tue Nov 14, 2006 4:47 pm Subject: Help with timers! |
| Hello, and thank you for this wonderful application! I'm trying to do a simple countdown time that plays a warning after 10minutes you have pressed a button. And if you press that button within the ti ... |
| |