Just want to let the group know that I've found a solution with an AutoIt
script.
here's the script:
-----------------------------------
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$GUI = GUICreate("", @DesktopWidth, @DesktopHeight, $WS_POPUP,
BitOR($WS_EX_TOOLWINDOW, $WS_EX_LAYERED))
GUISetBkColor(0x000000)
GUISetState()
WinSetTrans($GUI, "", 200)
GUICreate("new", 200, 200)
GUISetState()
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
-------------------------------------
Now I ask out of curiosity, is the above possible with PowerPro?