--- In [email protected], "p.renfrew" <p.renf...@...> wrote:
>
> --- In [email protected], "brucexs" <bswitzer@> wrote:
> 
> > >
> > Let me know if you find something reliable.
> 
> win.setparent(win.handle("Bar"),win.handle("Program Manager"))
> 
> It seems to be pinnable when you check "Disable desktop composition" in the 
> compatibility tab for PPro. 


If you still need a win+d workaround, you could just write your own instead, 
like the following script which works with single hot key.  (not tested).

static saved, restorenext
if (not vec.exists(saved))
saved = vec.create(25,25)

if (not restorenext) do
restorenext = 1
local hans = win.handlelist("*")
for each word hwnd in hans
if (hwnd.caption != "myclist") do
hwnd.hide //optional: quick way to remove from taskbar
hwnd.minimize
saved[saved.length] = hwnd
endfor

else
restorenext = 0
for each hwnd in saved
hwnd.show(1)
endfor
endif



(The Desktop minshowwindows basically works like that; writing your own script 
gives you more control)



Reply via email to