| Author |
Message |
Topic: Recursive Expressions |
Oberon
Replies: 1
Views: 57
|
Forum: Wish List Posted: Fri Jul 04, 2008 10:05 am Subject: Recursive Expressions |
| It's already possible with lexicos' [url=http://www.autohotkey.com/forum/viewtopic.php?t=26300]lowlevel hacks but I agree it would be useful as built-in feature. |
Topic: Using xpath to load XML data via HTTPS |
Oberon
Replies: 3
Views: 55
|
Forum: Ask for Help Posted: Thu Jul 03, 2008 10:09 pm Subject: Using xpath to load XML data via HTTPS |
Update to the latest version of xpath and try this:
tmp = %A_Temp%\x
URLDownloadToFile, https://xxx.yyy.com/main?cmd=display&user_cust_id=%ID%&raw=1, %tmp%
FileRead, xml, %tmp%
FileD ... |
Topic: Filter unwanted strings |
Oberon
Replies: 8
Views: 82
|
Forum: Ask for Help Posted: Thu Jul 03, 2008 8:29 pm Subject: Filter unwanted strings |
| stringfiltered := RegExReplace(string, "\W") |
Topic: Variable in a variable |
Oberon
Replies: 4
Views: 108
|
Forum: Ask for Help Posted: Sun Jun 29, 2008 10:16 am Subject: Variable in a variable |
| It's briefly documented in the page about [url=http://www.autohotkey.com/docs/misc/Arrays.htm]Arrays. I believe this is called double-dereferencing. |
Topic: Comment block bug |
Oberon
Replies: 3
Views: 105
|
Forum: Bug Reports Posted: Fri Jun 27, 2008 8:37 pm Subject: Comment block bug |
| Comments in Scriptsonly if the symbols appear at the beginning of a line |
Topic: Hotkeys without any keys inbetween |
Oberon
Replies: 5
Views: 206
|
Forum: Ask for Help Posted: Fri Jun 27, 2008 5:09 pm Subject: Hotkeys without any keys inbetween |
LShift & RShift up::
RShift & LShift up::
Send, {Blind}{Capslock}
Return |
Topic: speed |
Oberon
Replies: 3
Views: 151
|
Forum: Ask for Help Posted: Fri Jun 27, 2008 11:52 am Subject: speed |
| There are many ways to optimize code. If you have other applications running Process, Priority, , R should help. |
Topic: Software & Politics |
Oberon
Replies: 63
Views: 1368
|
Forum: General Chat Posted: Wed Jun 25, 2008 6:58 pm Subject: Software & Politics |
| Don’t trust software, which promote political agendas!Open source software (OSS) and the GPL are among the biggest political controversies in the industry - does that mean we should abandon AutoHotkey ... |
Topic: AHK re-designed part 2 |
Oberon
Replies: 14
Views: 254
|
Forum: General Chat Posted: Tue Jun 24, 2008 10:09 am Subject: AHK re-designed part 2 |
| My biggest problem is that it gives the impression of a shareware product advertisement page rather than an open source programming tool. |
Topic: Browser discussion |
Oberon
Replies: 16
Views: 345
|
Forum: General Chat Posted: Sun Jun 22, 2008 11:07 am Subject: Browser discussion |
| ACID2 a strange test that doesnt support the mainstream development standard LOL. You don't know what it is. ACID2 is a test for the well established CSS1/2 profiles that have existed for a decade. It ... |
Topic: Find out if I have a foreign IP address? |
Oberon
Replies: 2
Views: 66
|
Forum: Ask for Help Posted: Sun Jun 22, 2008 10:35 am Subject: Find out if I have a foreign IP address? |
You can use free services e.g.
file = %A_Temp%\geoip
UrlDownloadToFile, *0 http://geoip.co.uk/, %file%
FileRead, html, %file%
FileDelete, %file%
StringMid, html, html, InStr(html, " ... |
Topic: Browser discussion |
Oberon
Replies: 16
Views: 345
|
Forum: General Chat Posted: Sat Jun 21, 2008 12:56 pm Subject: Browser discussion |
How will the user if they need to parse the screen data that is the result
To my knowledge cURL doesnt offer such functionality please prove me wrongThat doesn't make much sense (is English not you ... |
Topic: Browser discussion |
Oberon
Replies: 16
Views: 345
|
Forum: General Chat Posted: Sat Jun 21, 2008 10:37 am Subject: Browser discussion |
or you could abandon firefox and use my script library in ieNO! F*** IE.
The best way is to use cURL to automate POST/GET form data. You can run though command line or DLL, it's instant and doesn't ... |
Topic: Focus search box |
Oberon
Replies: 12
Views: 273
|
Forum: Ask for Help Posted: Fri Jun 20, 2008 8:59 pm Subject: Focus search box |
| In addition to what Krogdor said you can also send Ctrl+K to Firefox to focus on search field. |
Topic: phpBB search bug |
Oberon
Replies: 7
Views: 205
|
Forum: Bug Reports Posted: Fri Jun 20, 2008 8:52 pm Subject: phpBB search bug |
| I've also seen this error on a few rare occasions which is one of the reasons why I use google to search autohotkey.com. Upgrading to phpbb3 or using InnoDB over ISAM engine should solve the problem, ... |
| |