Now, I tried the "lock to" position and then locked the 
> toolbar, applied, and then set the toolbar to float again.  Now I can 
> drag it wherever; but when I minimize the app, the toolbar is zapped to 
> the locked position.  Can I make the toolbar not zap?

If we are talking about caption position, then you can check "hide caption bar 
when active window not visible" on command lists|setup|all bars.  Or if you 
temporarily make it floating, you can move it to a desired default position.  
But you cannot make it stay where it was when the window disappeared.





> 
> Also, is there a way that when I have an app on the second monitor that 
> its dialogs will open on the second monitor too?  

Use a script which is run whenever a new window appears (or just first certain 
apps if they are the only ones you want to do this for).  Use auto open command 
list on command list|setup|special lists.  

The script should be something like (not tested and not valid code)
local hlist = win.handlelist("="++win.exename(lastautorunhjandle))
for each word hh in hlist
if (hh!=lastautorunhandle and hh is on second monitor) do
move window lastautorunhandle to desired position on second monitor
break
endif
endfor

Reply via email to