I saw some code using i think it was run32dll that was able to draw some text on screen that was transparent i cannot find this code again can anyone link me to it or post it?
Larry deleted all his posts some day.
Here is full original example (working fine with older AutoIt version 3.2.2.0):
#include <GUIConstants.au3>
$hwnd = GUICreate("Text Region",400,50,-1,-1,$WS_POPUP,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW))
GUISetBkColor(0x00FF00)
$rgn = CreateTextRgn($hwnd,"Larry Rocks!",50,"Arial",1000)
SetWindowRgn($hwnd,$rgn)
GUISetState()
Sleep(3000)
$rgn = CreateTextRgn($hwnd,"Really Really",50,"Arial",1000)
SetWindowRgn($hwnd,$rgn)
Sleep(3000)
Func Set