Opens given URL and shows user has clicked link
| #include "Window, Screen, Mouse and Control.au3" _GUICtrlLinkLabel_Clicked( $hLabel, $sURL [, $iColor = -1] ) |
| $hLabel | Label GUI handle |
| $sURL | URL to open |
| $iColor = -1 | Label color, -1 = set color with _GUICtrlLinkLabel_SetClickedColor() or default $COLOR_PURPLE |
| none |
_GUICtrlLinkLabel_Create, _GUICtrlLinkLabel_SetColor, _GUICtrlLinkLabel_SetClickedColor, _GUICtrlLinkLabel_SetFontSize, _GUICtrlLinkLabel_GetFontSize
$LabelLink = _GUICtrlLinkLabel_Create("Show Peter's AutoIt Library
website",10,10,300,25)
GUICtrlSetTip(-1,"Click to show the website in the default browser")
.....
Switch $aMsg[0]
Case $LabelLink
_GUICtrlLinkLabel_Clicked($LabelLink,"https://sourceforge.net/projects/peace-equalizer-apo-extension")
Case ....