#include <ScreenCapture.au3>
Global $Left=113,$Top=178,$Width=3,$Height=2
$string=Gruppe()
$len=StringLen($string)
MsgBox(0,"len",$len)
MsgBox(0,"String",$string)
; ===============================================
Func Gruppe()  ; arbeitet mit $datei="Hilfsdatei.bmp"
$datei="Hilfsdatei.bmp"
_ScreenCapture_Capture($datei,$Left,$Top,$Left+$Width,$Top+$Height)
Local $h=FileOpen($datei)
Local $string=FileRead($h)
FileClose($h)
Return $string
EndFunc
