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


Similar Posts:


Professional :: Flash Button Effect - Transparent Area On Mouseout

Apr 2, 2012

I am making flash with mouse over its not working properly,
1) When mouse over the button not come the transperant area to entire pic
2) How can transparent area slowely to come mouse out

View 3 Replies

Flex :: Apply A Filter To A Specific Area Of A DisplayObject?

Aug 14, 2009

Is there any way of applying a ColorMatrixFilter to one rectangular area of a DisplayObject, leaving the rest untouched? The DO is a container, and the user interacts with objects in it, so taking snapshots to change its appearance isn't an option.

View 2 Replies

ActionScript 3.0 :: Set Area To Be Transparent?

Jul 8, 2009

How do I set an area to be transparent in ActionScript 3.0?At the moment I'm creating a subtitles area to sit over the player and it has the following code:[code]

View 1 Replies

Spread Transparent Area Over A Map?

Jan 28, 2010

On the opening of the map where it shows a transparent red spreading would you create the growing red transparent area over the map in the Pacific with transparent shape tween. Also any tutorials on doing this.

View 2 Replies

Professional :: Spreading Transparent Area Over A Map?

Jan 28, 2010

On the opening of the map where it shows a transparent red spreading would you create the growing red transparent area over the map in the Pacific with transparent shape tween. Also any tutorials on doing this.

View 6 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

ActionScript 3.0 :: Click Through A Transparent Area Of A Bitmap?

Sep 18, 2008

I am importing some graphics on the fly, and want to be ableto drag them around the stage, which all works great. My issue isthat if I add a large element, like a border around the edge of thestage, this covers up all the other items so that clicking on themis not possible. I can see them, but when I click, the large itemgets the event, even though visually, it is transparent. There arethings I could do if I was doing all the development of thegraphics in the IDE, but these items load at runtime, so it has towork with bitmap

View 1 Replies

ActionScript 2.0 :: Make A Text Area Transparent?

Aug 11, 2005

is there a way to make a Text Area transparent?, I'm using this code:

_level0.taDescription.depthChild0._alpha = 0;

and works, but then, I'm loading that SWF in another SWF and I loose the alpha property?

View 2 Replies

ActionScript 3.0 :: Remove Transparent Area From Bitmap?

Sep 17, 2010

So I have a BitmapData object that's 400x400, and is mostly transparent with a small area (up to 50x50) of color somewhere inside. That's drawn to a bitmap, and now I somehow need to generate a Sprite that is only the dimensions of the small colored area, and sits in the same place on the screen.The size and position of the colored area is variable, and the operation to create the new Sprite must be near-instantaneous, so no lengthy pixel comparison exercises.

View 2 Replies

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

ActionScript 1/2 :: Decrease Hit Area - That Mouse Out Of To Make The Drop Down Area Pull Back?

Jul 28, 2009

i have a drop down menu am working on and each button tab (although they are not button instances !) when clicked opens up the "drop down" section which you can mouse over to choose another specific button etc - if you mouse out of that drop down area then it pulls back up to the original tab state ..  what do i change to the code below to decrease the area that you mouse out of to make the drop down area pull back .....at the moment it at least two inches on the screen below and to the right of boundaries of the drop down box before it pulls up - i want to it pull up as the mouse leaves the boundary box .... hope this makes sense .... there is some part of the actionscipt below that controls this but can work out which bit and how to change it !!! (am guessing the x mouse and y mouse bits - but how to change it ???)

[Code]...

View 1 Replies

Flash :: Determining Visible Area/invisible Area Of A Masked Object?

Sep 29, 2011

I have a movie clip named circle_mc(see the image on the link below) and a mask object(movie clip) which determines visible area of the circle. User can change the portion which is visible (extend the red area and make it red+blue, gray area is invisible). I need to find proportion of visible area to invisible area (red+blue/gray) so that I can calculate angle.

View 1 Replies

ActionScript 2.0 :: Load The Area Of The Xml File Into Text Area On Mouse Click?

May 21, 2004

I would like to first add the xml to my flash. Fine I can do this.But I have a number of buttons, where when I click say CW1, i get the information from the XML file with a node of CW1. I have all the xml set up fine.As I have about eight different postcode types.

ST, CW, CH, TF, WV, WS, DE, SK, SY, and each of these may have numbers that follow, i.e ST1, ST2, ST3 and so forth.

So I can only assume that the postal area could be the main nodes, and the numbers inside the child nodes, am I right thus far.o how can i load the area of the xml file into my text area on mouse click, pulling the information relating.

View 11 Replies

ActionScript 3.0 :: Detecting/omitting Transparent Area In Bitmap?

May 29, 2009

i am loading a background bitmap into a sprite. after that i make this sprite draggable. now i would like to have a copy of this sprite where just the area with the non-transparent parts of the bitmap react to the click.

i know that i can determine if a pixel is transparent with the getPixel32() method, but it seems to be overkill to anylyze every pixel... or is it not?

View 9 Replies

ActionScript 3.0 :: Creating A Transparent 'mouse Responsive' Area?

Nov 29, 2010

I want to put a transparent area on my stage.  When the mouse enters that area I want to be notified (so that I can do stuff).I expect to use some code like"addEventListener(MouseEvent.MOUSE_OVER, mouseInRemote);" - but the qustion is "What do I add to my stage?"

View 8 Replies

ActionScript 2.0 :: Dynamically Creating Transparent Area On Movieclip

Aug 1, 2007

I have a .jpg graphic in a movieclip on layer two (1024/768). This is used as a background.I have a .jpg scrolling movieclip on layer one. It is a very wide graphic used for displaying a panorama.I would like to be able to create, dynamically using actionscript, a transparent area on the layer two movieclip (create a window) to view the underlying movieclip.I believe this is possible using the Rectangle class in the flash.geom.rectangle but I can't figure out how to attach it to the layer two movieclip or how to make it transparent so shows the underlying scrolling graphic.

View 4 Replies

ActionScript 2.0 :: Make A Blank Button With A Transparent Hit Area?

Oct 17, 2007

I'm trying to make a button symbol with a transparent hit area - surounded but a dynamically drawn border. Heres what I have. I have a simple AS script that uses goTo and lineTo (plus a randomizer to make sure the buttons are skewed and differnt everytime) to create a "sketchy box" as my button. My script resides in a movie clip withing the "over" state of a button symbol. Now the active hit area is ONLY the line elements. Question : How in the world, using only actionscript an I make a second, transparent area inside of the sketchy lines to make the whole button symble clickable?

View 5 Replies

ActionScript 2.0 :: Draw *only* On The Board Area (a 450 X 350 Pixels Area) Instead On The Whole Movie

May 30, 2004

However I'd need to be able to draw *only* on the board area (a 450 x 350 pixels area) instead on the whole movie... how to "tweak it?" Here's the fla: [URL]

View 8 Replies

ActionScript 2.0 :: [Ask] Object Moving In Limited Area Or Masked Area

Jun 15, 2011

I have Particle animation like this this PHP Code:

[Code]...

But i want that Object moving in limited area or masked area. I add masked area like this PHP Code:

[Code]...

But it still not working. Any advice ?? or correction in my script code?

View 1 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 2.0 :: Declare An Area Then If Mouse Is Clicked In Area Then

Nov 29, 2009

I'm programming a game for my Advanced Higher Computing class, and am doing a whack a mole style game. I am trying to program for the bit where when you click the moving movie clip, then the score is increased by 1.

if(mousedown){
if(movieClip contains mouseXCoOrd){
if(movieClip contains mouseYCoOrd) {
score ++
}
}
}

View 3 Replies

Do Not Allow Editing At Specific Area In Text Area In Flex

Nov 10, 2011

I just want to do not allow editing at some area of text area in flex. How it can be done?let suppose text length in text area is 50 characters, i want to allow editing if cursor position is less than 15, and if cursor position in text area is greater than 15 it should not allow user to add more text in text area.If user press any key it should not add any character in text area.[code]

View 1 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

ActionScript 2.0 :: Effect In Certain Box / Area?

Aug 17, 2004

in my flash site im creating i have a certain area which i call an effect box/area and in it is just going to be funny stupid little effects. Anyway i have script to make an object move randomly around; except i do not know how to make it so that the effect is in my effect box/area instead of all over my site?? i have played around with the width and height varibles but just cant get it to work?

[Code]....

View 1 Replies

ActionScript 2.0 :: Effect In Certain Area?

Aug 17, 2004

in my flash site im creating i have a certain area which i call an effect box/area and in it is just going to be funny stupid little effects.Anyway i have script to make an object move randomly around; except i do not know how to make it so that the effect is in my effect box/area instead of all over my site?? i have played around with the width and height varibles but just cant get it to work?Here is my script:

onClipEvent (load) {
//data you may want to change
width = 600;[code]......

View 1 Replies

ActionScript 3.0 :: Click&drag On The L - No Object The Transparent Area Of The L Receives Mouse Events?

Aug 25, 2009

I have objects that the user can click&drag. They're PNGs, mainly rectangular, no problem till here.But I then had to put an L-shaped object (a PNG with a lot of transparency), so i've made a movieclip with an shape with the same L shape than the png, and use it as its hitArea:

shape.visible= false;
shape.mouseEnabled= false;
obj.addChild(shape);
obj.hitArea= shape;

This works PERFECT, the mouse events respond as expected, and I can click on objects that are below/above the transparent area of the png/object.All objects are inside a Sprite called playgroundLayer1. The issue comes when I take the L-shaped object and put it on another Sprite (playgroundLayer2), that is above the playgroundLayer1.I this case, I can click&drag on the L, but no object below the transparent area of the L receives mouse events.

View 8 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 2.0 :: Target Area Effect While Still Dragging?

Apr 17, 2004

Flash MX 2004. My drag and drop is working fine, but now I want the target area to highlight or something while the mouse is over it but not released yet, like its confirming the target area I want to drop in. The target area is several irregular polygon shapes. I would prefer if the target area would show an outline around the area.

My button try didn't work because I'm already pressed down on another button (the one I'm dragging).

View 1 Replies

ActionScript 2.0 :: Target Area Effect While Still Dragging

Apr 17, 2004

Flash MX 2004. My drag and drop is working fine, but now I want the target area to highlight or something while the mouse is over it but not released yet, like its confirming the target area I want to drop in. The target area is several irregular polygon shapes. I would prefer if the target area would show an outline around the area. My button try didn't work because I'm already pressed down on another button (the one I'm dragging).

View 1 Replies







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