window trails on resize MIAW

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139