--- In [email protected], "quantiworks" <quanticwo...@...> wrote: > > 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? >
You could likely do it with bars. One bar with a single button the size of the desktop. Button color black. Button transparency as desired. A second bar opened ontop, with a button sized 200x200. Regards, Sheri
