| Author |
Message |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
OceanMachine
Replies: 128
Views: 19450
|
Forum: Scripts & Functions Posted: Thu Aug 11, 2011 4:31 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
ahhh... the advantages of registering...  |
Topic: « What's on your mind? » |
OceanMachine
Replies: 1230
Views: 48255
|
Forum: General Chat Posted: Tue Jul 26, 2011 12:29 pm Subject: « What's on your mind? » |
| I don't think that the climate change deniers are completely denying that there is actual change to the climate, rather that the reason is not because of human factors. Also, that "global warmin ... |
Topic: Win 7 issue |
OceanMachine
Replies: 3
Views: 240
|
Forum: Ask for Help Posted: Wed Jul 20, 2011 11:16 am Subject: Win 7 issue |
UAC is on. That is why I put a msgbox up telling the user to answer YES to the UAC prompt if they are shown it.
If AHK determines that the current script is not running as an Admin, it will restar ... |
Topic: Win 7 issue |
OceanMachine
Replies: 3
Views: 240
|
Forum: Ask for Help Posted: Tue Jul 19, 2011 4:10 pm Subject: Win 7 issue |
Something like the below works for me using Windows 7 Pro (32-bit). No comspec, pkill or taskkill required in my case
MsgBox, Please wait while blablabla is installed. To allow installation ... |
Topic: AutoHotkey v2 Alpha Release |
OceanMachine
Replies: 710
Views: 57761
|
Forum: Scripts & Functions Posted: Mon Jul 18, 2011 3:03 am Subject: AutoHotkey v2 Alpha Release |
Hi Guest....
Ummm, are you sure you didn't post in the wrong topic? Because some context to your post(s) would be nice... it seems you are trying to propose a hack that can be used to assign multi ... |
Topic: The %1 variable in AHK ? |
OceanMachine
Replies: 3
Views: 274
|
Forum: Ask for Help Posted: Thu Jul 14, 2011 4:57 pm Subject: The %1 variable in AHK ? |
What are you trying to do?
This script copied some selected text into the clipboard, then attempts to see if it is a .ahk, .txt, etc file, and if so then check if it is open in Notepad2, and if not ... |
Topic: No lines after Msgbox line are being executed |
OceanMachine
Replies: 4
Views: 107
|
Forum: Ask for Help Posted: Thu Jul 14, 2011 4:44 pm Subject: No lines after Msgbox line are being executed |
Why are you setting a timer, then using it to jump into an infinite loop?
All this will do is mean the timer keeps interrupting your infinite loop to jump into another deeper infinite loop...
... |
Topic: Issues with case |
OceanMachine
Replies: 16
Views: 328
|
Forum: Ask for Help Posted: Tue Jul 12, 2011 8:20 pm Subject: Issues with case |
That's because they are 2 different keys. One is "+" and one is "NumPadAdd". You can get them to do the same thing as follows:
+::
NumPadAdd::
Send E4 ; do ... |
Topic: Command Line Switch/Parameter? |
OceanMachine
Replies: 8
Views: 466
|
Forum: Ask for Help Posted: Tue Jul 12, 2011 6:04 pm Subject: Command Line Switch/Parameter? |
The code looks OK. I just changed the flow round a bit. You can also use IsLabel() to identify whether a label is valid dynamically. Ideal for this situation
Also, it's generally better to us ... |
Topic: Issues with case |
OceanMachine
Replies: 16
Views: 328
|
Forum: Ask for Help Posted: Tue Jul 12, 2011 12:28 am Subject: Issues with case |
+q::Send, {Shift Up}h ; need Shift Up else we will send capital h
q::S
+x::Send, {Shift Up}{Ctrl}{F3}
x::Send, += ; sends s ... |
Topic: solving a #maxhotkeyperinterval error |
OceanMachine
Replies: 5
Views: 268
|
Forum: Ask for Help Posted: Mon Jul 11, 2011 11:56 pm Subject: solving a #maxhotkeyperinterval error |
Are you sure you want z? The normal function of z wil be blocked.
There is no need to set #MaxHotkeysPerInterval to a really high value, you just need a litle sleep in there to stop the hotkey fro ... |
Topic: How can i remap the Alt single press function? |
OceanMachine
Replies: 7
Views: 215
|
Forum: Ask for Help Posted: Mon Jul 11, 2011 11:35 pm Subject: How can i remap the Alt single press function? |
| What is the problem with Alt-Tab that you are having? |
Topic: How can i remap the Alt single press function? |
OceanMachine
Replies: 7
Views: 215
|
Forum: Ask for Help Posted: Mon Jul 11, 2011 7:14 pm Subject: How can i remap the Alt single press function? |
| I don't think this is possible to stop Alt being passed to Windows in the normal way, and I think (but don't quote me on it) that it's something to do with the way Windows aggressively detects the Ctr ... |
Topic: A_TimeIdlePhysical - not working :[ |
OceanMachine
Replies: 12
Views: 257
|
Forum: Ask for Help Posted: Mon Jul 11, 2011 6:11 pm Subject: A_TimeIdlePhysical - not working :[ |
The part i don't understand is
Settimer, Idle, 30
What does the 30 stand for?
and
Can Idle just be any name, or is it labeled as idle for a reason?
30 means "30 milliseconds" an ... |
Topic: Help - command to modify folder permission |
OceanMachine
Replies: 2
Views: 122
|
Forum: Ask for Help Posted: Mon Jul 11, 2011 12:04 pm Subject: Help - command to modify folder permission |
| No, but you can run xcacls from within AHK, so you don't need a batch file... |
| |