ActionScript 3.0 :: Clear A Certain Area In Graphics Object

Jul 3, 2009

I'm implementing a simple painting programm. Therefor I need something like a Graphics.clear() function, not for the whole Grahpics object, but for a small area only.I don't want to paint in white color instead, I just want to really clear the previously drawn lines and stuff.

View 2 Replies


Similar Posts:


Actionscript :: Clear Just A Portion Of A Graphics Object?

May 10, 2011

I am making a Flash CS5 application in which the user draws transparent overlays on a Sprite placed on top of an image. The user needs to be able to erase his input as in MS Paint, Adobe Photoshop, or GIMP. Because the Sprite is on top of an image, there is no safe clear color I can think of to draw over the section that the user has just rubbed his eraser over

View 1 Replies

ActionScript 3.0 :: Graphics Clear() Doesn't Clear Bitmap Data From BeginBitmapFill()?

Jul 30, 2011

I'm working on a game whose background has many layers that each scroll at different speeds.

Inside each layer I have a Sprite, I've started using graphics.beginBitmapFill, but what I've found is that the graphics.clear() function doesn't actually clear the contents set by the previous call to graphics.begin.BitmapFill. Each frame, I adjust the matrix to shift the layer as needed.  Then, I call graphics.clear() and graphics.beginBitmapFill() with the adjusted matrix. Since my layers have alphas in the bitmap, I can see the contents that was drawn the previous frame.

View 3 Replies

ActionScript 3.0 :: Memory, Graphics.draw And Clear?

Jan 11, 2010

i have a movieClip. On it i draw a few rundedRects, when i resize the window i use graphics.clear to remove it, and then reDraw the Rects. Will this result in memory leakages? or will flash reuse the memory address as long as i draw on the same sprite?

View 1 Replies

Actionscript 3 :: Using Graphics.clear Not Working As Expected?

Mar 12, 2012

Would anyone know why using graphics.clear(); in this example is preventing the graphics from being drawn?

e.g. the following code works and the lines are drawn.

var my_shape:Shape = new Shape();
my_shape.graphics.lineStyle(2, 0x00FF00, 1);
addChild(my_shape);

[Code]....

I'm wanting to animate the line moving so would like to clear the previous drawing before redrawing the lines.

View 1 Replies

ActionScript 3.0 :: Visual Artifacts Left After Graphics.clear?

Feb 2, 2010

I am drawing an animated angled line. The line follows a (senocular) path and updates using TweenMax. The line draws in and then 'retreats' out again. When the line retreats, I am left with 'chips' from the line graphic - even though I have used sprite.graphics.clear().

An example is will be clearer so I have uploaded one here:[URL]Allow the grey line to draw in and the red button to appear. Roll over and out the red button and you should see the small triangle artefacts from the highlighting left behind on the angle.I created a simplified?! version of the code in the hope that someone can point out an error:

EDIT: If I change the JointStyle to MITER in lineStyle, that fixes it but I am non the wiser and would prefer to use ROUND. END EDIT

Code:
package
{
import com.senocular.drawing.Path;
import flash.display.*;
import flash.events.*;

[code]....

View 2 Replies

ActionScript 3.0 :: Flash - Clear A Single Line Graphics From Its Multiple Instance Upon Click

Apr 13, 2012

I am trying to delete a single line using graphics.clear() method but it clears all the instance of lines created by lineTo() method. I want to remove a single line upon click from bunch of its multiple instance.

View 2 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 :: [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

ActionScript 3.0 :: How To Clear Shared Object

May 28, 2009

I made a shared object whiteboard but I have a stupid problem with removing objects. This is function to clear shared object :

public function clearShape (so:SharedObject):void {
trace('clear:', this.name);
delete so.data[this.name];

[code].....

View 2 Replies

ActionScript 3.0 :: Clear A XML Object Of Its Data?

Feb 10, 2010

is there a way to clear an XML object of its data to allow it to load new data from the same URL?

View 21 Replies

ActionScript 3.0 :: Clear Filter After Having Applied It To Object

May 2, 2009

How do I clear a filter after having applied it to an object. In particular, I'm bluring an object while animating it but want to clear the blur once it's hit the destination mark.[code]

View 3 Replies

ActionScript 2.0 :: Shared Object - How To Clear Array

Oct 12, 2005

I am using this code:
Code:
clearList_btn.onRelease = function() {
extTracks.clear();
};
But the array in the shared object still exists.

View 2 Replies

IDE :: Clear Events Connected To Object And His Childs?

Aug 14, 2008

I have problem with clearing memory in my game because of eventListeners, garbage collector not clear my objects with events, because events points them when objects are removed from scene. Is there any way to clear events connected to object and his childs? (game create a lot of objects and put diferent listeners if necessary, but because there are also libraries which are created by other programmers I cant just make list of events to clear) Even clar whole scene will be sutable for me if it will destroy all events, because its big problem and game close to beta -.- the only thing I cant do is close flash window

View 5 Replies

Flex :: Clear The Text Field Or Destroy The Object?

Jun 24, 2009

I have a text field, which holds the session value. Now while when i do logout operation.. clearing the text field does not work...

sessionHold.text = ""; The above code does not work, its not clearing the session value in the field.

appSes = event.result as Array
var vinoth:String = String(appSes[0]);
Alert.show(vinoth);
sessionHold.text = appSes[1];

View 1 Replies

ActionScript 3.0 :: Clear Shared Object When Close Flash Player?

Aug 9, 2011

Is there a way to clear shared object when I close Flash player.

stage.addEventListener(Event.UNLOAD, Close);
function Close(event:Event):void
{
mySO.clear();
}

View 1 Replies

Flex :: Set Text On A Graphics Object?

Oct 19, 2011

Is there anyway I can effectively call the equiv. of setText on a Flex Graphics object ?Specifically I'm using a custom cell renderer to display data in a datagrid. The renderer uses the Graphics object to set the background colour of only a portion of the cell (say the left half) based upon the underlying data. I would like to be able to have text over only that portion of the cell which has the background colour (eg centred within the left half). I know all the widths (of both the cell itself and the graphics object) but I don't know how I can set text (centred) over the graphics object.

View 5 Replies

Flex :: Set Text On Graphics Object?

Nov 3, 2009

Is there anyway I can effectively call the equiv. of setText on a Flex Graphics object ?

Specifically I'm using a custom cell renderer to display data in a datagrid. The renderer uses the Graphics object to set the background colour of only a portion of the cell (say the left half) based upon the underlying data. I would like to be able to have text over only that portion of the cell which has the background colour (eg centred within the left half).

I know all the widths (of both the cell itself and the graphics object) but I don't know how I can set text (centred) over the graphics object.

View 4 Replies

ActionScript 3.0 :: Know What Has Been Drawn In A 'graphics' Object

Jul 17, 2009

Lets say I have a customMovieClip. I sometimes draw an ellipse with customMovieClip.graphics and sometimes a rectangle. Now I want to know what was the shape ( ellipse/rect) that was created using a particular graphics object. Doing this would enable me to pinpoint what exactly to do with that customMovieClip() instance.

View 3 Replies

ActionScript 3.0 :: Get The Pixel Color Of A Graphics Object?

Jul 19, 2009

for example,graphics is an object from a movieclip ojbect.I want to get the pixel color at the x,y location in the movieclip.How to do?

View 5 Replies

ActionScript 3.0 :: Modify A DrawCircle Graphics Object?

Sep 21, 2009

I have a Sprite in which I have drawn a circle with a fill.  Later on, I wish to modify the color of this circle.  I have retrieved the Graphics object from the Sprite using getChildAt(), and have tried:
 
getChildAt(i).graphics.beginFill(0x550000);
 
however this does not work.   I've RTFM'd but can't figure out exactly how to deal with the Graphics object.

View 4 Replies

ActionScript 3.0 :: Calling Graphics In Custom Object?

Dec 14, 2011

I am trying to create a custom object which will display particular graphics at a particular time (when the movie tells the object to show something). Well I made my object (the way I thought it would work) and I encountered a problem when I called graphics functions from the main movie.

I made a very stripped down version of the same object to test and see what was going wrong. Apparently, I can call "Draw()" directly from inside the constructor and it will use the draw methods, but I cannot call it from the movie (like in the script below) and I can't call it from another function in the object if that function is not called during the constructor.

The question is... am I doing this right? The simple version of my end goal would be to create this object and have a function that I can call in the object something like "DrawImage(imagePath:String)" and it will use the graphics to draw the image.

In the movie:
----------------------------------------------

ActionScript Code:
import com.experimental.DynamicSprite;
import flash.display.Sprite;

[Code].....

View 2 Replies

ActionScript 3.0 :: Knowing What Has Been Drawn In Graphics Object

Jul 17, 2009

Lets say I have a customMovieClip. I sometimes draw an ellipse with customMovieClip.graphics and sometimes a rectangle. Now I want to know what was the shape ( ellipse/rect) that was created using a particular graphics object. Doing this would enable me to pinpoint what exactly to do with that customMovieClip() instance.

View 3 Replies

ActionScript 3.0 :: Graphics Item A Null Object In Other Functions?

Mar 26, 2009

OK, so I have code making a new graphics item and calling it sliderBar:

Code:
var sliderBar:Shape = new Shape();
sliderBar.graphics.lineStyle(2,0xFFFFFF,1,true);

[code].....

View 4 Replies

Actionscript 3 :: Draw Shadow Without Filter On Graphics Object?

Sep 27, 2010

I have a complex graphics data on a sprite or a shape (no matter which is exactly). But I want to draw shadow (inner too) for one Rect ( [10, 10, 240, 25] for example) or another path.

[Code]...

View 1 Replies

Flash - Draw A Bitmap In Graphics-Object At Any Position?

Mar 30, 2011

Is it possible to draw a Bitmap to a Graphics-Object like

this.graphics.beginBitmapFill(bitmapData, matrix, false);
this.graphics.drawRect(0, 0, w, h);
this.graphics.endFill();

with an offset?

A simple moveTo(x, y) call before beginBitmapFill does not work :/ Neither does changing the x and y value of drawRect... (That just seems to have the same effect as an translation with the matrix...) Additionally I don't want do draw that thing in a separate Graphics-Object and add that one into the other...

View 2 Replies

Flex :: Give A Depth To An Object Created From Graphics?

Apr 18, 2011

I am drawing some lines in my program using

graphics.lineTo(xx, yy);

The program has a background image over which these lines are drawn.The problem which I am facing is that the image overshadows the lines and the lines are not visible to the user.Since these lines do not have an id, I am not sure as to how I can assign a depth to them?

View 2 Replies

ActionScript 3.0 :: Determine Current Pen Position In Graphics Object?

Jan 3, 2010

Is there a way to determine the current position of the pen in a graphics display object. Something similar to what is discussed in this thread but for AS3?

View 4 Replies

Flex :: Where In Framework Graphics Object Passed Around To Achieve Drawing

Oct 23, 2009

I'm trying to understand how the Flex framework draws objects (Button, Label, Image, etc.). The Button class seems to draw itself by addChild()ing its ProgrammaticSkin. However, where in the framework is the Graphics object being passed around in the hierarchy to achieve the drawing. I want to get to the level of 2D API.

View 1 Replies

Actionscript 3 :: Flash : Read Data From Shape/graphics Object?

Dec 2, 2009

I am wondering if it is possible to get the data that is stored in a shape/graphics object in flash using actionscript 3?

In my project I would like to be able to draw a shape and then read all the points in that shape into my script. The reason for that is that I need go generate lines from those points that I later can use to check if my characters velocity intersects with any of them.

View 3 Replies







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