#include <GUIConstants.au3>
#include "SliderTipEx.au3"

$hWnd = GUICreate("SliderTip Beispiel by name22 (autoit.de)", 400, 130)
$cSlider1 = GUICtrlCreateSlider(5, 5, 390, 40)
GUICtrlSetLimit(-1, 500, 0)
$cSlider2 = GUICtrlCreateSlider(5, 45, 390, 40)
GUICtrlSetLimit(-1, 600, 50)
$cSlider3 = GUICtrlCreateSlider(5, 85, 390, 40)
GUICtrlSetLimit(-1, 300, 100)
GUISetState()

_SliderTip_RegisterToolTip($cSlider1, $hWnd)
_SliderTip_RegisterToolTip($cSlider2, $hWnd, "AutoIt!", False, True)
_SliderTip_RegisterToolTip($cSlider3, $hWnd, "_Time", True)

While 1
    Switch GUIGetMsg(0)
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

Func _Time()
    Return @SEC
EndFunc