* Does anyone know how to make an entire movie dragable without using the
title bar option?



Hi Colby,

give this a try:


on mouseDown me

  oldH = the mouseH
  oldV = the mouseV

  repeat while the mouseDown
    dH = the mouseH - oldH
    dV = the mouseV - oldV
    (the stage).rect = (the stage).rect + rect(dH,dV,dH,dV)
  end repeat
end

(behaviour to be attached to the element of the movie which should act like
a title bar or something)


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to