Hallo!
Kann mir jemand helfen, also ich habe dieses script
Spoiler anzeigen
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
$Gui = GUICreate("SB Hp Suche", 600, 500)
GUISetBkColor(0x006633)
HotKeySet("{F4}", "test")
HotKeySet("{F5}","info")
$Input1 = GUICtrlCreateInput("Simon Webstation", 10, 30, 580)
$search = GUICtrlCreateButton("Suchen", 270, 65, 100, 25, $BS_DEFPUSHBUTTON)
$label = GUICtrlCreateLabel("", 10, 100, 400, 350)
GUICtrlSetFont(-1,14)
GUICtrlSetColor(-2,0xFFFFFF)
$describe = GUICtrlCreateLabel("",10,120,400,350)
GUICtrlSetFont(-1,12)
GUICtrlSetColor(-2,0xCDCD00)
$label2 = GUICtrlCreateLabel("",10,150,400,350)
GUICtrlSetFont(-1,14)
GUICtrlSetColor(-2,0xFFFFFF)
$describe2 = GUICtrlCreateLabel("",10,170,400,350)
GUICtrlSetFont(-1,12)
GUICtrlSetColor(-2,0xCDCD00)
GUISetState()
While 1
$msg = GUIGetMsg()
Switch $msg
Case $GUI_EVENT_CLOSE
Exit
Case $search
$input = GUICtrlRead($Input1)
$read = GUICtrlRead($label)
If $input = "Simon Webstation" Or $input = "simon-webstatio" Or $input = "Simon-Webstation" Or $input = "simon-webstation" Then
GUICtrlSetData($label, "Simon-Webstation")
GUICtrlSetData($describe,"http://www.simon-webstation.de")
GUICtrlSetData($label2,"*****")
GUICtrlSetData($describe2,"*****")
Else
GUICtrlSetData($label, $read & "Es wurde nichts vorhandenes eingegeben" & @CRLF)
EndIf
EndSwitch
WEnd
Func test()
Exit
EndFunc ;==>test
Func info()
MsgBox(0,"Info","Für Infos musst du insgästebuch schreiben auf http://www.simon-webstation.de")
EndFunc ;==>info
wie kann ich hier die http://... Labels mit einem hyperlink ins internet versehen.