Here's a script from Scott Rossi's WindowLab example stack:
(put it in the stack scripts)

local allowDrag

on mouseDown
  put mouseH() & "," & mouseV() into allowDrag
end mouseDown

on mouseMove x,y
 if allowDrag is empty then exit mouseMove
set topLeft of this stack to globalLoc(x-item 1 of allowDrag & "," & y-item 2 of allowDrag)
end mouseMove

on mouseUp
 put empty into allowDrag
end mouseUp

on mouseRelease
 mouseUp
end mouseRelease


-Marty Knapp
How would one drag an entire window/stack around (for example, if the title bar 
becomes obstructed)?  If I hold my mouse down over an empty piece of real 
estate I'd like to be able to drag the whole window from there, just as if I 
were dragging from the title bar.

Thanks
Mark_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to