Ask a Question related to Macromedia Director Basics, Design and Development.
-
lafa #1
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
-
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... -
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... -
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... -
disable screen capture
Is there any way to disable screen capturing via lingo or the use of an Xtra? thanks -
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... -
JB #2
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



Reply With Quote

