| Author |
Message |
Topic: USB device connected/disconnected notification? |
M3CSL
Replies: 30
Views: 2308
|
Forum: Ask for Help Posted: Mon Mar 31, 2008 6:10 pm Subject: USB device connected/disconnected notification? |
1: DriveGet, driveletters, list
2:wait for usb
3: DriveGet, driveletters, list
compare 1&3
But its necessary to execute line 1 every time the drive letters change... Isn't it? |
Topic: Enable/Disable a Network Connection |
M3CSL
Replies: 38
Views: 8229
|
Forum: Scripts & Functions Posted: Sun Mar 30, 2008 9:55 am Subject: Enable/Disable a Network Connection |
You need to remove the #F10:: in this script. In another script you have to insert this to run your script:
#F10::Run yourScript.ahk |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Sat Mar 01, 2008 12:58 pm Subject: Run with windows error dialog instead of AHK error |
Thx, really nice:
#c::
cba := ClipboardAll
Clipboard =
Send ^c
ClipWait, .319
If (Errorlevel)
Msgbox, 16, Run, % "No text selected. ... |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Sat Mar 01, 2008 12:06 pm Subject: Run with windows error dialog instead of AHK error |
My last code is useless , since it doesn't work for URLs. This one works for everything I tried:
www.google.de
http://google.de
mailto:
control
control.exe intl.cpl
control intl.cpl
i ... |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Mon Feb 25, 2008 10:50 am Subject: Run with windows error dialog instead of AHK error |
.. also it is not possible to start the run dialog hidden. :(
Didn't I understand your post where you wrote you can hide it?
Anyways, here is some code:
Thank you, but I'm not a friend of fla ... |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Sun Feb 24, 2008 9:33 am Subject: Run with windows error dialog instead of AHK error |
| Guest, I understand. But I need a function which runs everything that Win-Run does. |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Sun Feb 24, 2008 9:31 am Subject: Run with windows error dialog instead of AHK error |
I would recommend you to keep the Windows Run Dialog hidden and use it instead. :)
Read the following topic.win+r without running explorerposted by dandy
Nice idea. I read this and the followin ... |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Sat Feb 23, 2008 12:28 pm Subject: Run with windows error dialog instead of AHK error |
I found another problem:
Run, "%Clipboard%",, Hide UseErrorLevel
Run, cmd /c start "" "%Clipboard%",, Hide UseErrorLevel
are unable to run these examples:
contr ... |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Fri Feb 22, 2008 6:48 pm Subject: Run with windows error dialog instead of AHK error |
Thank you both, I modified your script and now I use this:
#c::
cba := ClipboardAll
Clipboard =
Send ^c
ClipWait, .319
If (Errorlevel)
Msgbox, 16, Run, No ... |
Topic: [SOLVED] Docu example for horizontally scroll doesn't work.. |
M3CSL
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 4:35 pm Subject: [SOLVED] Docu example for horizontally scroll doesn't work.. |
Hi,
your code works fine for me in Adobe Reader und Firefox. But I found no way to h. scroll per keyboard in Word. |
Topic: Run with windows error dialog instead of AHK error |
M3CSL
Replies: 13
Views: 358
|
Forum: Ask for Help Posted: Thu Feb 21, 2008 12:49 pm Subject: Run with windows error dialog instead of AHK error |
Hi,
is there a possibility to show a windows error dialog after run a inexistent command like it occurs when I type a wrong command in Win+R - instead of the ahk error like in my current code!?
... |
Topic: [SOLVED] Docu example for horizontally scroll doesn't work.. |
M3CSL
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Wed Feb 20, 2008 8:16 pm Subject: [SOLVED] Docu example for horizontally scroll doesn't work.. |
Thx for this hint, I solved the problem:
GroupAdd, H_SCROLL, ahk_class OpWindow ; Opera
GroupAdd, H_SCROLL, ahk_class MozillaUIWindowClass ; Firefox
GroupAdd, H_SCROLL, ahk_class ... |
Topic: [SOLVED] Docu example for horizontally scroll doesn't work.. |
M3CSL
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Wed Feb 20, 2008 5:43 pm Subject: [SOLVED] Docu example for horizontally scroll doesn't work.. |
| And there is no solution for it? |
Topic: [SOLVED] Docu example for horizontally scroll doesn't work.. |
M3CSL
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Wed Feb 20, 2008 12:51 pm Subject: [SOLVED] Docu example for horizontally scroll doesn't work.. |
Hi,
it does not work on some apps like Firefox and Opera. Any idea why? Source: http://www.autohotkey.com/docs/Hotkeys.htm
TIA!
~LControl & WheelUp:: ; Scroll left.
ControlGetFo ... |
Topic: USB device connected/disconnected notification? |
M3CSL
Replies: 30
Views: 2308
|
Forum: Ask for Help Posted: Wed Feb 20, 2008 12:26 pm Subject: USB device connected/disconnected notification? |
Cool, thx, it perfectly works with my cardreader and card in 2nd device letter. But it was necessary to change one command:
DriveGet, Ready, Status, %a_LoopField%:\
Makes sense, didn't it? |
| |