| Author |
Message |
Topic: listen to a port |
Xenolith0
Replies: 7
Views: 418
|
Forum: Ask for Help Posted: Wed Oct 10, 2007 2:04 pm Subject: listen to a port |
As far as I'm aware AHK has no ability to listen on TCP/IP ports, but even if I'm wrong on that, I don't see how what you're requesting could be done.
By the time Computer B makes a FTP request to ... |
Topic: How will I get my external IP ? |
Xenolith0
Replies: 13
Views: 744
|
Forum: Ask for Help Posted: Tue Oct 09, 2007 1:01 pm Subject: How will I get my external IP ? |
Sup, I noticed you said you needed the country name as well. So I threw together this page really quick:
<external ip>,<2 letter country code>,<printable country name> |
Topic: How will I get my external IP ? |
Xenolith0
Replies: 13
Views: 744
|
Forum: Ask for Help Posted: Tue Oct 09, 2007 11:57 am Subject: How will I get my external IP ? |
:SI*:]ip:: ; Replaces "]ip" with user's current external ip address
FileDelete, ipaddress
UrlDownloadToFile, http://cdxliv.net/ipaddress.php, ipaddress
FileRea ... |
Topic: Help me |
Xenolith0
Replies: 4
Views: 240
|
Forum: Ask for Help Posted: Tue Oct 09, 2007 9:40 am Subject: Help me |
^!z::
PixelGetColor, color, 607, 385, RGB
Ready=0xEBEBEB ; 0x<RGB Value of pixel>
if (Ready=color)
{
Click 507,385
}
Works for me =) |
Topic: help me with RegExMatch thx. |
Xenolith0
Replies: 5
Views: 191
|
Forum: Ask for Help Posted: Tue Oct 09, 2007 7:45 am Subject: help me with RegExMatch thx. |
value = blablabal value="1o48afk64kg956k" test="asd"><a
RegExMatch(value, "value=""([\w\d]*)""" , text)
MsgBox, ... |
Topic: Start Winamp from the keyboard with the multimedia buttons |
Xenolith0
Replies: 5
Views: 498
|
Forum: Ask for Help Posted: Sat Oct 06, 2007 2:16 pm Subject: Start Winamp from the keyboard with the multimedia buttons |
| What you want to do is possible in AHK, but... it better done in Windows itself. Windows controls what media player opens by default when you press the Media key depending on what player you have set ... |
| |