Actionscript 3 :: Capture Stage Area Using BitmapData?

Mar 15, 2010

I am trying to grab part of stage area using BitmapData and copyPixels method:

bmd = new BitmapData(stage.stageWidth, stage.stageHeight);
bmdRect = new BitmapData(320, 240);
rectangle = new Rectangle(360, 20, 320, 240);
bmdRect.copyPixels(bmd, rectangle, new Point());

[Code].....

The result i get is an empty .jpg I m pretty sure that the error is in the Bitmap procedure and not the saving one...

View 2 Replies


Similar Posts:


Actionscript 3 :: Get BitmapData From A DisplayObject Included Transparent Area, And Effect Area

Aug 5, 2011

I have this function:

public static function cloneDpObj(target:DisplayObject):Bitmap
{
var duplicate:Bitmap;

[code]....

to clone target displayObject (MovieClip or Sprite) and return Bitmap Object.

It can get bitmap from the target object, but it seem don't get all the area of the image.

By give the width and height of target object, but the target object in design was applied by Glow Effect, so my question can we get the all view of bitmapdata from a displayobject?

View 4 Replies

ActionScript 3.0 :: Use BitmapData Class To Capture An Animated Movieclip?

Jul 16, 2009

I'm trying to use BitmapData Class to capture an animated movieclip and adding it to the display list by using addChild, but it's causing my computer to bog down because it's adding a zillion children. what do I do to remove the old, or rather, update the current child with the new one?

View 1 Replies

ActionScript 2.0 :: Use BitmapData To Capture A Movieclip That Has Been Created Dynamically?

Apr 23, 2007

I'm trying to use BitmapData to capture a movieclip that has been created dynamically.

Here's my code:

Code:
on(release)
{
import flash.display.BitmapData;

[Code]....

As u must have noticed, the movieclip i wanna draw, namely _root.VESSEL, itself contains several other clips (eg _root.VESSEL.db). The problem is that the clip doesnt get drawn at all! All i get is a white rectangle of the size i've created the bitmapData. But nothing of that movie clip has been captured.

is it that the BitmapData cannot capture the details of a clip if it has child clips?? Coz here, VESSEL itself was created empty, and all the new shapes are actually being placed as movie clips inside other empty clips that were created in VESSEL.

View 5 Replies

Erase An Area In A BitmapData Object?

Oct 11, 2009

Flex 3, ActionScript 3, Flash player 9.

I have a picture in a BitmapData object. And an array of points. I nead to erase the part of the picture inside a polygon specified by the points. In other words, draw a polygon specified by the points and fill it with transparency.

View 2 Replies

Flash :: BitmapData - Scale And Select Area In One Matrix?

Jun 29, 2011

I'm using a transform matrix as part of a bitmap draw to select an area of my target rather than drawing from 0,0:

var bmd:BitmapData = new BitmapData(target.width,target.height,true,0);
var mat:Matrix = new Matrix(1,0,0,1,-target.x,-target.y);
bmd.draw(this,mat);

[code]......

View 1 Replies

ActionScript 3.0 :: Using BitmapData.draw(stage) - Error #2123 Security Sandbox Violation: BitmapData.draw

Jan 9, 2012

I am having an issue with using BitmapData.draw(stage). I am getting the following error:

SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: file:///C|/Documents%20and%20Settings/bla...bla...bla.swf cannot access null. No policy files granted access. Here is a portion of my code:

var bd:BitmapData = new BitmapData(2800, 2100); bd.draw(stage);//this is where the error happens All of the files referenced (.xml/.jpg/.swf) are located in the same local folder as the main .swf. How do I get around this error? The main objective is to print the stage using PrintJob(). I am using Flash Professional CS5.5 and publishing to Flash 10.0/10.1. Let me know if I need to supply any more info.

View 4 Replies

Actionscript 3 :: Bitmapdata - GetColorBoundsRect - Find The Rectangle Area Or Each Circle

Jun 20, 2011

I have a BitmapData with 2 red circles. I want to find the rectangle area or each circle. If i use [B]getColorBoundsRect[/B] I get the smallest area enclosed by the 2 circles. How can i go about this and get individual area of the circles?

View 1 Replies

Flash :: Find The Size Of The Area In A Bitmap Which Has Been Filled Using The Bitmapdata.floodfill Method?

Sep 27, 2011

I am using the floodfill method to colour-in sections of a bitmap image. That part is easy enough but the issue comes in with the way I am adding an effect to the colour fill routine.

To add the effect, first a copy of the bitmap data is created and floodfill is used on that instead of the original bitmap. Then the bitmapdata.compare method is used to set the alpha value of everything apart from the filled-in section to 0 and the result is saved in another bitmapdata. After that, a 1 px radius circle sprite is added to the stage and is being tweened to the image dimensions and its mask is set to the sprite which contains the result of the compare operation.

This works perfectly except for the fact that the fill sprite has to be tweened to the complete image dimensions irrespective of how small the area is being coloured-in since I am not able to find a way to get the dimensions of the fill area. I am doing an bitmap image update at the end of the tween and I have to disable user interaction till the tween is complete to avoid the errors which come in if another fill-in operation is started before the base image has been updated. If I could somehow get the dimensions of the fill area then the time during which I have to disable the user interaction will go down considerably.

View 3 Replies

ActionScript 3.0 :: Load The .swf With The Exact Stage Size So The Graphic Elements Do Not Float Outside The Loaded Movies Stage Area?

Sep 7, 2010

I'm making a mockup for a client and I need to Load the .swf with the exact stage size so the graphic elements do not float outside the loaded movies stage area. [URL]Basic load code I'm using...

Actionscript Code:
import flash.display.*;var adLoader1:Loader = new Loader();adLoader1.load(new URLRequest("100828_budlight_texas_fight_728x90_jn.swf"));adLoader1.x = 313;adLoader1.y = 162;addChild(adLoader1);var adLoader3:Loader = new Loader();adLoader3.load(new URLRequest("100828_budlight_texas_fight_300x615_jn.swf"));adLoader3.x = 738;adLoader3.y = 0;addChild(adLoader3);

View 3 Replies

ActionScript 3.0 :: Screen Capture Of Stage

Jan 24, 2008

I'm looking for any information anyone may have on ActionScript 3.0 and capturing the area of the stage. I'm not interested in taking a picture of someones desktop, just the stage.

View 10 Replies

ActionScript 3.0 :: Capture Only A Portion Of The Stage?

Oct 23, 2010

I have done this a million times in AS but not quite getting it in AS3.. maybe my brain is just fried..i have a rectangle_MC that is moving around the stage.. inside that rectanlge_MC i want to constantly redraw the stage, well only the portion of the stage that is covered by the rectangle..o if my rectangle for instance is currently at x:60 and y:80, and its demensions are 200x200, want it to redraw just the ares of the stage that starts a x:60, y:80 and goes to x:260 and y:280..

View 4 Replies

ActionScript 3.0 :: Screen Capture A Particular Position In A Stage?

Jun 26, 2010

basically i would like to screen capture a part for the stage. but i got no idea how to do it as i am very new to flash programming.i am using the PNGencoder to do the process, but i cant actually screen capture the position i want. this is tje sniplet of the code for the process. It is taken from a tutorial with some changes, but it is still lacking of the position of the stage i want to screen capture.

private function export():void
{
var bmd:BitmapData = new BitmapData(216.2, 468.29);

[code]....

the code are working properly for now except it captures the point from 0 x axis and 0 y axis. I need it to be like 150 on x axis and 150 on y axis.

View 3 Replies

ActionScript 3.0 :: Screen/Stage Capture Without Serverside Scripting?

Jun 2, 2010

I have a game that allows people to arrange images however they like, but I need a way for users to take a screenshot/image of their design (stage) so it can be emailed. I've found loads of examples that use server side scripts such as php (JPEGEncoder) but this particular program I�m creating is for internal office use only and don�t have access to a server to upload it.

View 3 Replies

ActionScript 3.0 :: Why Stage.addEventListener Does Not Respond When On Capture Phase

Nov 7, 2010

If I have the following code which adds an event listener to the stage, why does it not respond when the capture parameter is set to true. It works fine when it is set to Target and Bubblig (false). My understanding is that all the phases happen...

[Code].....

View 1 Replies

ActionScript 1/2 :: Screen / Stage Capture And Post Data

Feb 9, 2012

I am working on a project that requires the stage (and everything on it) to be captured, converted to a bitmap and then that data to be posted to another domain. I have looked at the .getPixel method but that creates a ridiculously long string and more often than not, will crash the swf in the browser. How I could possibly approach this. Oh, I need to do this in AS2 too.

View 1 Replies

Actionscript 2.0 :: Letting The User Capture A Region Within The Stage?

Mar 2, 2009

what I'm trying to do is allow the user to pick a section of the stage, click, and have the region defined be copied and show up on the other side of the stage. It may be better explained to think of it like a camera game. The player has cross hairs, can move the square (which tracks the mouse) around the stage, and click to capture that square's pixel information, store it to a new movieclip and display it on another area of the stage.

I've found many resources online about capturing BitmapData, including capturing from embedded FLV videos, but I haven't seem to be able to find anyone who has created something like this which captures from a moving region. However, I have seen it done before in a game that is no longer online from PBSkids.org.

Here is what I have so far. Right now, when I click the movieclip loads all white pixel data and I'm not sure why.

[flash=]import flash.display.BitmapData;
import flash.geom.Rectangle;
import flash.geom.Point;
stop();

[Code].....

View 1 Replies

AS3 :: Add Linked BitmapData To Stage?

Oct 12, 2011

I'm trying to add a sprite to a stage made from bitmapData I link to from the library with the identifier pointerGraphic, here's my code:

Pointer.as

package com.George.BMIapp
{
import pointerGraphic;
import flash.display.BitmapData;

[Code]....

Yet nothing appears on the stage, yet there are no errors (I'm in strict mode with debugging enabled).

View 2 Replies

ActionScript 2.0 :: Using BitmapData With MC That Is Already On Stage?

Jun 14, 2011

I'm working on a project that requires more than a simple hitTest. Bitmap collision seems the best way to go. My end goal is to be able to determine which side a rectangle was hit: top, right, down or left. If there is a way to do this with a simple hitTest I'd love to hear about it. The problem I'm running into while following the Flash Example with bitmap.hitTest is that as soon as I apply BitmapData to an mc that already exists on stage the collision detection stops working. I am wondering if this is an inherent issue and I have to rely on creating the movieclips via script then attaching BitmapData.

The Flash example is as follows, this code works correctly:
ActionScript Code:
import flash.display.BitmapData;
import flash.geom.Point;
var myBitmapData:BitmapData = new BitmapData(100, 80, false, 0x00CCCCCC);
var mc_1:MovieClip = this.createEmptyMovieClip("mc", this.getNextHighestDepth());
mc_1.attachBitmap(myBitmapData, this.getNextHighestDepth());
[Code] .....

View 0 Replies

ActionScript 3.0 :: SWF Sound And Make The Flash Stage The Size Of The Original Screen Capture Video Of 1024 X 768

May 24, 2010

Made a swf [URL] some viewers see and hear fine but others are having sound and size issues and I need some practical answers. SIZE: I make the Flash stage the size of the original screen capture video of 1024 x 768 and right now it is set to

[Code]...

View 2 Replies

Flash :: Get Rid Of Stage Area?

Jul 15, 2011

I have my flash doc. and I used a mask to give it rounded corners but you can still see the stage color. I am new to flash so I can use the help. How do I get rid of this or can you even do this?

View 2 Replies

ActionScript 3.0 :: Load It Into BitmapData Then Into Bitmap Then Onto The Stage?

Jul 16, 2010

What i want to do is get a png from my library load it into bitmapData then into bitmap then onto the stage.I don't even have enough success here yet to have code to post. Please for the LOVE of Mike!

View 5 Replies

ActionScript 1/2 :: Place On A Particular Area Of The Stage?

Jul 30, 2009

I want to place my duplicates about one third down from the top and in a small bit from the left.  Roughly centre them on stage.  My code so far:
 
for (var i = 1; i <= 6; i++){ duplicateMovieClip ("fish_mc", "fish_mc" + i, i); _root["fish_mc" + i]._x = 500 * Math.random (); _root["fish_mc" + i]._y = 350 * Math.random ();}

View 9 Replies

Expanding The Work Area Outside The Stage?

Nov 25, 2009

I currently have an small animation job that involves an enormous zoom out. To do this I need to scale the symbol containing all the animation out in the main timeline, from extremely close to quite far away.
 
I have two problems that are preventing me from doing this satisfactorily.
 
Firstly, the transform panel doesn't work. Specifically, entering scale values only seems to work beween 0 and 100%, anything larger gives unpredictable results.
 
Second, the symbol has become too large for the work area (I have zoomed out as far as I can go) - how can this area to spread out to the whole of the graphic editing area, instead of the third of it that is on the left side?
 
For example, I have used the Free Transform tool and scaled the item up 2500%, and now it's too big for the limited work area. To scale it further, or scale it back, I need to enter scale amounts into the Transform panel. After doing this, the figures I enter turn into arbitrary other values and my symbol either warps or disappears entirely.
 
Ideally, I should be able to look at the stage itself, click on the symbol, scale it in the Transform panel to 3000% and be done with it.

View 2 Replies

ActionScript 3.0 :: The Stage View Area?

Sep 2, 2009

Once again i'm a bit lost XD. The deal is, that i'm making a dynamic "blog like" news viewer, so, when i got more than 2 news (sometimes even with one), all the rest of the news get out of the stage and are not seen.

I have been reading methods about changing the stage size but the question is here, if i manage to change the stage size, all the content will be scaled too, isn't it? That's exactly what i don't want.

then, how do i change the "view area" of the stage.

View 6 Replies

ActionScript 3.0 :: Draw Shapes From Stage To Bitmapdata Quickly?

Feb 18, 2012

I am copying a bunch of shapes from my stage to a set of bitmaps for filtering.

Is there a faster way to do this? Is there a way to copy everything over together from the stage rather than how I'm doing it by copying the shapes in my array one by one?[code]...

View 1 Replies

ActionScript 3.0 :: Spawn A MovieClip Somewhere In The Stage Area?

May 30, 2009

I have a mini-game where I have three movieclips:The player (controlled by mouse); A random object that moves around the stage (like the arkanoid ball without the paddle and the blocks); A simple power up.The game is simple: hitting the power up increases your scoreThe game ends when the object hits the player.The question is:How can I spawn the power-up (randomly) on the stage area, every time the player hits it?When that happens I want the following events to occur:1) The power-up to be removed;2) Increase the score by 1.3) Place a new power up randomly on the stage.4) Rinse and repeat.

View 12 Replies

Professional :: Area Outside Of Stage Shows Up On Website?

Apr 29, 2010

I was at a friend's house and wanted to show him our website.  When I navigated to it, about 10% of the area outside of the stage was visible.  It was almost as if the swf had been shrunk by 10%, but still within the stage area (750px x 600px).  I'm not sure what's causing it, but I've seen it happen once before with a computer here at our office.

It always seems to happen with Internet Explorer.  When we right-clicked on the swf and choose "show all" it filled the area and looked normal.  I've never encoutered the problem using Firefox and only some of the time when using Internet Explorer.  Not sure if it just happens with a certain version of IE or what.[URL]..

View 1 Replies

ActionScript 2.0 :: Export A Specific Area Of The Stage?

Aug 30, 2009

I would like to export a specific area of the stage. So, for example. My stage is 400 x 400 and I would like to export only 100 x 100 of the stage at xy 0 pos.

View 6 Replies

ActionScript 2.0 :: Randomly Place Mc On Stage EXCEPT For One Area?

Jul 3, 2006

I want to load some mcs randomly on the stage, except for a footer area at the bottom of the stage. Is there a way to exclude just a certain part of the stage using something like Math.random()*Stage and then specifying the bottom 300 pixels as off limits?

I'm using the whole stage because the swf is embedded 100% across the browser, so I can't restrict the dimensions.

Code:
onClipEvent (load) {
x = this._x=Math.random()*Stage.width;
y = this._y=Math.random()*Stage.height;
}

View 14 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved