--- In [email protected], "brucexs" <bswit...@...> wrote:
> What are you using it for and how?
In PowerPro startup script I initialize a variable:
global FullScrCapts = ""
Then in HWE:
if (win.fullscreen(1) == 1)
FullScrCapts ++= arg(4) ++ " "
So I try to gather captions of all windows that were in fullscreen mode.
That is because any software that is in fullscreen mode
shifts one of my PowerPro bars to some distance left from other bar
to which this bar is locked to.
And then this element in More commands field of HWE:
if (index(FullScrCapts, arg(4)) && arg(1)==0) do
Script.RunFile(?"CLs\Bar-InfoBack.powerpro")
is purposed to shift the bar back (Bar-InfoBack.powerpro):
CL_Hnd = cl.Get("Bar-info")
CL_Hnd.lockto(1,"Tray",0,0,0,0 ,100,0,0,0)
MayBe the shifting is possible because I use PowerPro insrtead of Explorer.
PowerPro is my main shell.