On Thu, Jul 30, 2009 at 2:51 PM, Harold Pimentel<withfalseemot...@yahoo.com> wrote: > Hi all, > > Can someone show me a key binding that will show the window content while I > "move" it, not just the outline? I also want the key binding to allow me to > hold the click button on my mouse down while i hold meta, and as soon as i > let go of the click button, it releases the window. > > I basically want to emulate Gnome behavior. > > Currently I have: > > Mouse 1 WTSFI1357924680 M Move > > Which does none of these. > > > Thanks, > > Harold > > > > >
You need to bind to a function with Move as the "move action" or "immediate action". <code> DestroyFunc MyMove AddToFunc MyMove + M Move Mouse 1 W M MyMove </code> I use this function for a binding similar to yours: <code> DestroyFunc MoveOrMaximize AddToFunc MoveOrMaximize + I Raise + M Move + D ThisWindow (Iconic) Maximize True + D TestRc (NoMatch) Maximize 100 100 + D Iconify False </code> -- Thanks, Jonathan Kotta Hofstadter's Law: It always takes longer than you expect, even when you take into account Hofstadter's Law.