I use this in a transparent graphic at the top of my odd windows. It may work at the card level if you pass mouseDown etc.

HTH

Tom

on mouseDown
  put the loc of this stack into initrec
  put the mouseloc into mymouseloc
  repeat while the mouse is down
    add (the mouseH - item 1 of mymouseloc) to item 1 of initrec
    add (the mouseV - item 2 of mymouseloc) to item 2 of initrec
    if initrec = oldrec then
      next repeat
    end if
    set the loc of this stack to initrec
    put initrec into oldrec
  end repeat
end mouseDown

On Jun 6, 2005, at 7:50 PM, zack wrote:


Hello again,

What a snap it is to create a custom shaped window! Really cool. But how do make it so the user can still drag the window around their desktop? I can't seem to grab any part of it to move it.

Thanks

z
_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution



Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to