Hello, I am trying to set a transparent background to the GUICtrlCreateSlider elements to show the main background. Is it possible?
#include <SliderConstants.au3>
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $Form = GUICreate("Example GUI", 449, 211)
GUICtrlCreatePic(@ScriptDir & '\bg.bmp', 0, 0, 0, 0)
GUICtrlSetState(-1, $GUI_DISABLE)
Local $Slider = GUICtrlCreateSlider(0, 0, 399, 50)
Local $Slider_Vert = GUICtrlCreateSlider(399, 0, 50, 211, $TBS_VERT)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
EndFunc
bg.bmp