PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 231, 73, 192, 124)
$Label1 = GUICtrlCreateLabel("Google Crom", 8, 16, 95, 20)
GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0xFF0000)
$Button1 = GUICtrlCreateButton("Suspend / Freezed", 8, 40, 99, 25, 0)
$Label2 = GUICtrlCreateLabel("Das meinte ich xD", 112, 48, 90, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
GUICtrlSetColor($Label1 , 0x000ff42)
EndSwitch
WEnd