--- In [email protected], "brucexs" <[EMAIL PROTECTED]> wrote: > > > > > The solution from about to lock the windows on all desktops and > then > > hiding the from specific desktops is what I was trying to do > initially > > but could not find a way to do that. > > > > I can lock the apps to all desktops with no problem. How do I hide > the > > locked apps from specific desktops though? > > > > If I can find a way to do that then that is perfect. > > > Use the command list run after desk switch is complete to do > something like (using pseudo-code) > > if (locked-windows should be shown on this desk) do > window show *caption1* > window show *caption2* > else > window hide *caption1* > window hide *caption2* > endif > > It important the *caption1* etc match only the window you are > interested in and not any other window (possibly initially hidden) > on the system. > > > > >
Thanks Bruce. That works. For anyone in the future that is looking for this solution here is what I ended up doing. Pin the program to all desktop's using the =exename parameter in the vdesk setup. Create a new command-list that has a single entry in it that has the following "more commands" if (desktop != "xxx") && (desktop != "xxxx") do *Window Show! "caption*" *Window Back! "caption*" else *Window Hide! "caption*" endIf Now in the vdesk setup set the "after desk switch" command to run the command list created above. I appreciate all the help. Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
