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

  1. #1

    Default Capture screen

    Can someone help me, I found nothing to the "newmember" that I created from
    the following script:

    thestagebitmap = (the stage).image.duplicate()
    set newmember=new(#bitmap)
    newmember.image.copypixels(thestagebitmap,
    thestagebitmap.rect,thestagebitmap.rect)

    I want to capture the stage as a new image for further usage. Thanks for
    your kindly help.


    lafa Guest

  2. Similar Questions and Discussions

    1. screen capture
      Putting together some docs for a new tool and found that Print in MX2004 loses trails on stage. Looked at printomatic but it is no longer on the CD...
    2. screen capture to FMS
      Hi everyone, I want to send a video stream from C# to FMS(with network layer and all that stuff) is it possible? If not, can I send byte array to...
    3. Webcam screen capture
      For our class project this year we are working on a flash com conference streaming program. Since we don't have the equipment to take a real screen...
    4. disable screen capture
      Is there any way to disable screen capturing via lingo or the use of an Xtra? thanks
    5. Help: how to disable the screen capture on OS X ??
      In article <c8cda9c0.0308120141.6e500fa2@posting.google.com>, xxiankuan@yahoo.com (Xiao Xiankuan) wrote: There's no documented way for doing...
  3. #2

    Default Re: Capture screen

    new member returns a member number, you must reference a member object
    to get to the image, I added member( newmember) below.
    ( I haven't iused that duplicate form)
    > thestagebitmap = (the stage).image.duplicate()
    > set newmember=new(#bitmap)
    > member( newmember).image.copypixels(thestagebitmap,
    > thestagebitmap.rect,thestagebitmap.rect) -- fixed this line
    >
    > I want to capture the stage as a new image for further usage. Thanks for



    A simplified version:

    set newmember=new(#bitmap)
    member( newmember).image = duplicate( (the stage).image)
    JB 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