Ask a Question related to Macromedia Director Basics, Design and Development.
-
-E= #1
window trails on resize MIAW
Hi,
I'm experiencing window trails when i resize a MIAW when i'm testing it in a
projector. I had a script to drag the MIAW, that did the same, until i found
a very simple script that didn't do this.
Would anyone know a script to resize the window of a MIAW (not the contents)
that doesn't leave window trails?
I've pasted the script i'm using now (dragging: no trail, resize: trails. It
doesn't help when i put the updatestage out.)
thanks in advance for any help,
-Edwin
on mouseDown me
if dragging = TRUE then
set oldH = the mouseH
set oldV = the mouseV
repeat while the stilldown
set deltaH = the mouseH - oldH
set deltaV = the mouseV - oldV
(the activeWindow).rect = (the activeWindow).rect + rect
(deltaH, deltaV, deltaH, deltaV)
end repeat
end if
if toScale = TRUE then
oldLoc = the mouseLoc
repeat while the mouseDown
A = (the activeWindow).rect
N = the mouseLoc - oldLoc
(the activeWindow).rect = rect(A[1], A[2], A[3]+N[1], A[4]+N[2])
oldLoc = the mouseLoc
updatestage
end repeat
end if
-E= Guest
-
window resize
Hello, Is it possible to have a thumbnail in one cell of a table and the linked image open in another cell of the same or another table on the... -
How to turn off the title bar on a MIAW window?
In my projector the end-user can click on a button to open a MIAW window. I want the MIAW window to open up without its titlebar but, unfortunatelly... -
MIAW window transparency
Hi, Is it possible to make a MIAW transparent ..What I want is a MIAW that would act as a dialog box..but it should be translucent.. Thanks, KM -
MIAW forget window vs. close window
I'm having a problem with forget window. Sometimes when I forget a window, the projector crashes. The problem sometimes happens the first time I... -
Movie in a window MIAW window types
To follow up on this thread: Is the option to open MIAW with a 1-bit cast member mask (first available in updated ver. 7) still available in... -
-E= #2
Re: window trails on resize MIAW
forgot to mention, i'm working on Windows with Director 8
-Edwin
"-E=" <e@ee.nl.invalid.com> wrote in message
news:bkpg8t$6p2$1@forums.macromedia.com...a> Hi,
> I'm experiencing window trails when i resize a MIAW when i'm testing it infound> projector. I had a script to drag the MIAW, that did the same, until icontents)> a very simple script that didn't do this.
> Would anyone know a script to resize the window of a MIAW (not theIt> that doesn't leave window trails?
> I've pasted the script i'm using now (dragging: no trail, resize: trails.A[4]+N[2])> doesn't help when i put the updatestage out.)
>
> thanks in advance for any help,
> -Edwin
> on mouseDown me
>
> if dragging = TRUE then
> set oldH = the mouseH
> set oldV = the mouseV
> repeat while the stilldown
> set deltaH = the mouseH - oldH
> set deltaV = the mouseV - oldV
> (the activeWindow).rect = (the activeWindow).rect + rect
> (deltaH, deltaV, deltaH, deltaV)
> end repeat
> end if
> if toScale = TRUE then
> oldLoc = the mouseLoc
> repeat while the mouseDown
> A = (the activeWindow).rect
> N = the mouseLoc - oldLoc
> (the activeWindow).rect = rect(A[1], A[2], A[3]+N[1],> oldLoc = the mouseLoc
> updatestage
> end repeat
> end if
>
>
>
>
>
-E= Guest



Reply With Quote

