| Author |
Message |
Forum: Support Topic: Getting data from browser |
| ZirePhoenix |
|
Posted: October 23rd, 2010, 3:09 am
|
|
Replies: 2 Views: 250
|
Sorry for the late reply, but this doesn't look like it works with authenticated sessions. I'll have to test this out.
I'll also need to process live feeds from web pages and this won't work for that either. |
|
 |
Forum: Support Topic: Need better perf when parsing a string to new record length! |
| ZirePhoenix |
|
Posted: October 23rd, 2010, 3:05 am
|
|
Replies: 6 Views: 358
|
I second the RegEx. Learn to use Regular Expressions. It is insanely powerful.
For what you're doing in a script, I can replicate it in a Regular Expression Search/Replace within Notepad++. |
|
 |
Forum: Support Topic: Getting data from browser |
| ZirePhoenix |
|
Posted: October 7th, 2010, 2:35 am
|
|
Replies: 2 Views: 250
|
| Hello. I've looked at the IE controls and haven't see anything obvious that allows the Autohotkey script to read data from the page itself. I'm not sure how this is even possible since the results of the webpage is rendered HTML... I can do a CTRL-A and then copy and have Autohotkey parse the clipbo... |
|
 |
Forum: Support Topic: recoil compensator |
| ZirePhoenix |
|
Posted: September 28th, 2010, 9:38 pm
|
|
Replies: 6 Views: 437
|
| This is getting a bit close to an AimBot though. The only thing it really needs is to read from the graphics engine and aim for you instead of just compensating for recoil. |
|
 |
Forum: Support Topic: Cannot process character (A0) |
| ZirePhoenix |
|
Posted: May 27th, 2010, 11:35 pm
|
|
Replies: 5 Views: 439
|
| Doh! Forgot that * matches 0+, not 1+... I thought this was working because I used StringReplace to strip out spaces earlier, and forgot about it. This fixed it. Thanks. |
|
 |
Forum: Support Topic: Cannot process character (A0) |
| ZirePhoenix |
|
Posted: May 27th, 2010, 8:22 pm
|
|
Replies: 5 Views: 439
|
| Excel seems to have a special non-breaking space character that shows up as hex A0 instead of the 20 for a space. Autohotkey seems to just break completely when processing a variable with this character. The data will be something like " 12345", where the first character is this special A0... |
|
 |
Forum: Support Topic: Else If statment, is there bracket() character limit size? |
| ZirePhoenix |
|
Posted: May 15th, 2009, 9:57 pm
|
|
Replies: 22 Views: 1070
|
| The excel list varies, depends on who sends it, the ID's are not updated regularly, or consistantly in format. LOL, you have to make it mildly entertaining don't you :D Since it's not consistent, then I'll code for both vertical and horizontal consecutive data collection. I'm assuming there is cons... |
|
 |
Forum: Support Topic: Else If statment, is there bracket() character limit size? |
| ZirePhoenix |
|
Posted: May 15th, 2009, 6:10 pm
|
|
Replies: 22 Views: 1070
|
| Well, I guess it's not going to be a simple regular expression then... so instead of using a regular expression range, you can still generate a regular expression matching string for your data. Instead of cramming all the IF statements together, a regular expression string can be generated from the ... |
|
 |
Forum: Support Topic: Text changer for code |
| ZirePhoenix |
|
Posted: May 14th, 2009, 8:30 pm
|
|
Replies: 7 Views: 438
|
| If it is a character for character replacement, use Notepad and the "Replace" option... |
|
 |
Forum: Support Topic: Else If statment, is there bracket() character limit size? |
| ZirePhoenix |
|
Posted: May 14th, 2009, 8:22 pm
|
|
Replies: 22 Views: 1070
|
| You guys are making it WAY too complicated. A single IF statement using regular expression can handle the "largest" group: Your GroupIDs have a specific pattern, and a regular expression can handle that match. ;A001 - A033 = group1 Id's ;B001 - B078 = group2 Id's ;E001 - E405 = The large l... |
|
 |
Forum: Support Topic: Cannot stop right click menu from displaying |
| ZirePhoenix |
|
Posted: May 14th, 2009, 7:56 pm
|
|
Replies: 2 Views: 768
|
| Hmm, I found out that if I bound the key as RButton Up, it works a lot better. |
|
 |
Forum: Support Topic: Cannot stop right click menu from displaying |
| ZirePhoenix |
|
Posted: May 13th, 2009, 6:06 pm
|
|
Replies: 2 Views: 768
|
| Hello. I want to create a hotkey using the Right Mouse button. However, I haven't figured out a way to reliably disable the default context menu from showing up. If I a blank hotkey like this: RButton:: return Right click is effectively disabled. However, if I do something that uses Menu, like this:... |
|
 |
Forum: Support Topic: Best AutoClicking Script? |
| ZirePhoenix |
|
Posted: May 7th, 2009, 7:13 pm
|
|
Replies: 12 Views: 623
|
What really is the point of this? You can just use a line of Javascript in the URL and modify the number to some high number...
Or after the "test" is done... type your own number in the box!  |
|
 |
Forum: Support Topic: break a loop with a hotkey |
| ZirePhoenix |
|
Posted: May 7th, 2009, 7:03 pm
|
|
Replies: 4 Views: 470
|
| Exit only ends the main loop. The script is running because you have hotkeys. You should use ExitApp instead. Also, noticed that you do not have a "Return" after your main portion. Your script is starting from the beginning, and going all the way down, including your Pause command. You nee... |
|
 |
Forum: Support Topic: RButton hotkey does not display menu properly |
| ZirePhoenix |
|
Posted: May 6th, 2009, 9:00 pm
|
|
Replies: 2 Views: 586
|
| Pulled straight from the Help file: Menu, MyMenu, Add, Item1, MenuHandler Menu, MyMenu, Add, Item2, MenuHandler Menu, MyMenu, Add ; Add a separator line. ; Create another menu destined to become a submenu of the above menu. Menu, Submenu1, Add, Item1, MenuHandler Menu, Submenu1, Add, Item2, MenuHand... |
|
 |
| Sort by: |