_GUICtrlLinkLabel_Create

Creates a hyperlink label

#include "Window, Screen, Mouse and Control.au3"
_GUICtrlLinkLabel_Create( $sText, $iTop, $iLeft [, $iWidth = -1 [,$iHeight = -1 [, $iStyle = -1 [, $iExStyle = -1 ]]]] )

parameters

$sText Label text
$iTop Label top position
$iLeft Label left position
$iWidth Label width
$iHeight Label height
$iStyle Label style
$iExStyle Extended label style

return value

integer value _GUICtrlComboBox_GetCount()

related

_GUICtrlLinkLabel_Clicked, _GUICtrlLinkLabel_SetColor, _GUICtrlLinkLabel_SetClickedColor, _GUICtrlLinkLabel_SetFontSize, _GUICtrlLinkLabel_GetFontSize

example

$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 ....