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

  1. #1

    Default 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 will
    be the actual stage, not an image of the MIAW's stage. Is there a stage
    property of the activeWindow or do I need to grab the portion of the stage's
    image that represents the rectangle of the MIAW, or, is there some easier
    way?

    Craig


    --
    Craig Wollman
    Word of Mouth Productions
    phone 212 724 8302
    fax 212 724 8151
    [url]www.wordofmouthpros.com[/url]



    Word of Mouth Productions 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. Dynamically assigning stage script to MIAW sprite?
      I'm having trouble assigning a a script to a MIAW sprite. Anyone know of the proper way to do this? I tried a few things below with mixed results. ...
    3. 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...
    4. 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,...
    5. Closing a MIAW after using V12-DBE sends the stage to the background
      Hi, I have got a problem with the V12-DBE-xtra. I open a window from Director and execute some V12-functions. Closing the window with the normal...
  3. #2

    Default Re: miaw stage image

    The MIAW has its own .image property:-

    x=window("a.dir")
    open(x)
    put x.rect
    -- rect(521, 148, 841, 468)
    put x.image.rect
    -- rect(0, 0, 320, 320)

    Andrew
    Andrew Morton Guest

  4. #3

    Default Re: miaw stage image

    I did what I should have done before I posted it and found that the MIAW has
    it's own stage.image. Thanks.

    I guess I would have to use tell the stage to img = (the stage).image to get
    the stage's image from the MIAW


    --
    Craig Wollman
    Word of Mouth Productions
    phone 212 724 8302
    fax 212 724 8151
    [url]www.wordofmouthpros.com[/url]


    "Andrew Morton" <akm@in-press.co.uk.invalid> wrote in message
    news:bqi3se$hnh$1@forums.macromedia.com...
    > The MIAW has its own .image property:-
    >
    > x=window("a.dir")
    > open(x)
    > put x.rect
    > -- rect(521, 148, 841, 468)
    > put x.image.rect
    > -- rect(0, 0, 320, 320)
    >
    > Andrew

    Word of Mouth Productions 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