I don't know who the original poster was on this (I recently lost a 
few weeks worth of posts), but I've got a small demo movie that's a 
main movie + MIAW, & the MIAW is irregular shaped, transparent & 
drag-moveable (& closable).

If there's an interest in it, I'll post it for download.

-Buzz

At 12:47 PM -0500 6/4/01, Judy Price wrote:
>  > Hello!
>>  If sombody could help me, how to create a transparent MIAW (background),
>>  how to create a dragging window with Lingo (without titlebar).
>
>You could do a search on MediaMacros. I think there was some code there that
>you could modify.
>
>You might also try: (Courtesy of Chuck Neal).
>
>on DragWindow
>   mPt = the mouseLoc
>   rList = []
>   if (the windowList).count > 0 then
>     repeat with x = 1 to (the windowList).count
>       rList.add((the windowList)[x].rect)
>     end repeat
>     repeat while the mouseDown
>       newPt = the mouseLoc
>       d = newPt - mPt
>       repeat with x = 1 to (the windowList).count
>         newRect = offset(rList[x],d[1], d[2])
>         (the windowList)[x].rect = newRect
>       end repeat
>       repeat with x = 1 to (the windowList).count
>         tell (the windowList)[x] to updatestage
>       end repeat
>       updateStage
>     end repeat
>   end if
>end
>
>
>--Judy
>
>
>[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!]


[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