Na doch steht was drin, aber es ist ein Array.....
Probiere es mal so:
[autoit]#include <IE.au3>
#include <array.au3>
$IE = _IECreate("http://autoit.aufwaerts.de/jgs_portal_checker.php?", 0, 0)
$Read = $IE.document.body.innerText
$alt = StringSplit($Read, @LF)
While 1
_IEAction($IE, "refresh")
_IELoadWait($IE)
$Read = $IE.document.body.innerText
$Text = StringSplit($Read, @LF)
For $i = 2 To $Text[0]-1
If $Text[$i] <> $alt[$i] Then
Beep(500, 100)
TrayTip("Neues auf AutoIt.de:", $Text[$i], 10)
$Read = $IE.document.body.innerText
;msgbox(4096,"test",$Read)
$alt = StringSplit($Read, @LF)
_ArrayDisplay($alt,"test")
EndIf
Next
Sleep(1000)
WEnd
Viele Grüße
Carsten