[Flashcoders] bitmapdata question...

2007-02-02 Thread [p e r c e p t i c o n]
thank you sir! ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Trainin

RE: [Flashcoders] bitmapdata question...

2007-02-02 Thread Patrick Matte | BLITZ
AM To: flashcoders Subject: [Flashcoders] bitmapdata question... i've taken a snapshot of a movieclip. is there a way to keep it from showing? meaning i don't want to see it on stage i just want to save it. thanks ___ Flashcoders@chattyfig.f

[Flashcoders] bitmapdata question...

2007-02-02 Thread [p e r c e p t i c o n]
i've taken a snapshot of a movieclip. is there a way to keep it from showing? meaning i don't want to see it on stage i just want to save it. thanks ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:/

[Flashcoders] bitmapdata question / attachBitmap

2006-05-26 Thread grimmwerks
Hey - I'm merely curious... Say I do this: tPhoto = pGui.thisScreen.createEmptyMovieClip("photoMC", pGui.thisScreen.getNextHighestDepth(),{_alpha:0}); tPhoto.cacheAsBitmap=true; bkgrnd = new BitmapData(1, 1, false, 0x00FF, {_alpha:0}); tPhoto.attachBitmap(bkgrnd, 1); Now, say later, in som

Re: [Flashcoders] BitmapData question

2006-01-23 Thread Latcho
//take your snapshot ! //--> untested example of USAGE import Converter; var conv:Converter=new Converter() var snapshot_bd=conv.movieClipToBitmapData(mcToCapture) //paste snapshot conv.bitmapDataToMovieClip(snapshot_bd,_root,"snap_mc",10) //tested and working CLASS Converter.as

Re: [Flashcoders] BitmapData question

2006-01-19 Thread Ramon Tayag
Here, force to bitmap class that I made: http://www.flashkit.com/board/showthread.php?t=659163&highlight=force+bitmap On 1/20/06, Matt Muller <[EMAIL PROTECTED]> wrote: > Hi, does anyone know if its possible to use getPixel or something like that > to take a snapshot of a movieclip that contains

RE: [Flashcoders] BitmapData question

2006-01-19 Thread Scott Hyndman
Read the documentation on BitmapData.draw() Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Matt Muller Sent: Thu 1/19/2006 12:58 PM To: Flashcoders mailing list Cc: Subject:[Flashcoders] BitmapData question Hi, does anyone know if its possible to use

RE: [Flashcoders] BitmapData question

2006-01-19 Thread Ralph Caraveo
oders mailing list Subject: [Flashcoders] BitmapData question Hi, does anyone know if its possible to use getPixel or something like that to take a snapshot of a movieclip that contains some vectors and dynamic text fields and return that as a bitmap image to use elsewhere in the site, say as a refle

[Flashcoders] BitmapData question

2006-01-19 Thread Matt Muller
Hi, does anyone know if its possible to use getPixel or something like that to take a snapshot of a movieclip that contains some vectors and dynamic text fields and return that as a bitmap image to use elsewhere in the site, say as a reflection? Thanks MaTT ___