MIAW position - want to just replace stage

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

  1. #1

    Default MIAW position - want to just replace stage

    Hi

    I'm doing a dictionary type MIAW that pops up and completely replaces the
    stage with no border, and goes away when an "exit" button is pressed (ie it
    is to look as though you have "gone" to another movie, even thought the old
    movie is just paused and unable to be seen in the background as it's covered
    by the dictionary).

    Initially the MIAW had a border and was off centre. So I've set the
    WindowType to 3, and in the movie property location in the MIAW selected
    centred.

    The stage is 640x480 - windows app.

    It seems to work on my system, but does this seem to be the way to do it?
    I've read behaviour can be funny on different resolutions etc so I'm hoping
    to get some comfort this is the generic sort of way to replace the stage
    while the MIAW is visible.

    Thanks

    David.


    David Guest

  2. Similar Questions and Discussions

    1. miaw and stage
      Hello: I have a problem with miaw's. I need to call a miaw from the stage , and when the miaw appears the main movie pauses all actions and and it...
    2. miaw stage image
      I'd like to get the image of an MIAW's stage, not "the" stage. I'm assuming that if from the MIAW I put the image of the stage into a variable it...
    3. MIAW position
      hi, I'd like to open a MIAW froma my main movie, but I want the MIAW to be in the same position, referred to the main movie, in both 800x600 and...
    4. aliging a miaw over a sprite on stage... help please
      I though that I could tell the maiw to open in the same coordenates as an invisible member using the rect command but it only work well when the...
    5. Minimize Stage from MIAW/PC Projector
      Hi, I am having a problem minimizing the main stage when a MIAW is open. I am trying to minimize the stage from the title bar of the main stage,...
  3. #2

    Default Re: MIAW position - want to just replace stage

    Before opening the miaw you can set it's rect.

    window("Pop").rect = (the stage).rect

    window("Pop").visible = true

    -- might have to assign a file to the miaw before setting property

    window("Pop").file = the pathName & "MMIAWfile"

    have you looked into setting the modal of the miaw


    mouse enter/leave envents might still be getting to the stage.
    JB Guest

  4. #3

    Default Re: MIAW position - want to just replace stage


    "JB" <net> wrote in message
    news:macromedia.com... 

    Thanks, I've done this now.
     

    I have set it now.

    One thing that's strange is that the MIAW has a text field with a scroll bar
    in it. When it becomes visible the scroll bar is the last thing to come up,
    so I get a flash of what's under the scroll bar in the window what opens the
    MIAW when the MIAW becomes visible. Strange.


    David 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