Thanks for the help. I know that step works now, I just couldn't understand.
1WinActivate("Mozilla Firefox", "")
2Send("^a")
3Send("^c")
4$test = ClipGet()
5$test2 = StringSplit( $test, 'Balance:', 1 )
6ClipPut($test2)
7$aSRE = StringRegExp(ClipGet(), "(?s)(?i)(?m:^|\n)(\d+)\s+Points(?m:$|\s|\r)", 1)
8If IsArray($aSRE) Then MsgBox(64, "Points", $aSRE[0])
Alright this isn't my whole script just a test to get it working.
1. Selects the Firefox Window
2. Selects All
3. Copies All
4. Makes $test become the clipboard
5. Splits $test into the test I have posted before
6. How do I do this?
7. Your code
8. Your code
Nothing comes up I am sure I have the 6th line wrong, I am just not sure how to do it.
Thanks,
Zarox