#include #include #include Opt("TrayIconHide", 0) Opt("TrayMenuMode", 0) Opt("TrayOnEventMode", 0) $hGUI = GUICreate("Access2Web", 200, 250, -1, -1, $WS_EX_LAYERED, $WS_EX_TOOLWINDOW) $tLable=GUICtrlCreateLabel("Access2Web", 10, 10, 60, 15) WinSetOnTop( $hGUI, "", 1) $nAutoItScript_Com_HyperLink = _GUICtrlHyperLink_Create("Google" , 25, 35, 155, 15, 0x0000FF, 0x551A8B, _ -1, 'www.google.com', 'Visit: www.google.com', $hGUI) $nAutoItScript_Com_HyperLink = _GUICtrlHyperLink_Create("Bing" , 25, 65, 155, 15, 0x0000FF, 0x551A8B, _ -1, 'www.bing.com', 'Visit: www.bing.com', $hGUI) GUISetState(@SW_SHOW, $hGUI) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func _CreatoRLab_ShowInfo($nCtrlID, $h_GUI) MsgBox(64, 'Info', 'HyperLink Clicked:' & @CRLF & GUICtrlRead($nCtrlID), 0, $h_GUI) EndFunc