ActionScript 3.0 :: MovieClip - FloodFill And Line Crispness - Automatized Color Filling

Dec 18, 2009

I'm making a little coloring "game" for kids. The user selects a image (our originals are flash vectors), use the color picker to choose a color and click on parts of the image to color it as desired. Really simple stuff.

Now I'm trying to implement the program with automatized color filling (the old program requires that each part to be colored have to be a separate movie clip). After much research, I failed to find a method like the floodFill in BitmapData for MovieClips, so I tried to take a snapshot of the image as Bitmap with the BitmapData.draw method and use the floodFill directly.

[Code]...

View 3 Replies


Similar Posts:


Flex :: Graphics - Filling Color In An Object Built Using Primitives

Apr 22, 2011

I have a bounded object, created using primitives lines in Action Script- either an oval or a triangle. Is there any way I can fill the contents in a specific color

Just to clarify on this- the shape could be in two ways

a) drawing a isoceles triangle based on a variable apex angle

b) two curved lines to form a "lens"

I am not sure if I can use the fill function, as I am not drawing a inherently bounded shape- the closed nature is based on my calculations

[Code]....

View 3 Replies

ActionScript 2.0 :: Filling A MovieClip With A Small MovieClip And Tiling?

Mar 30, 2008

I was hoping to get a little guidance from the AS pro's. I have a movieClip that is 500x500 in one of my movies that I would like to add a tiled background to. This tile will be very simple something like 4x4. I have been reading up on the BitmapData class and figured this would be the best way to get this done and use up the smallest file size.But I am not 100% understand if that is the best solution. Anyone have any thoughts? After reading up on full page flash movies I figured that method should be able to be applied to individual movieClips as well.

View 4 Replies

ActionScript 2.0 :: Using Color Picker To Change Line Color?

Jun 18, 2010

I am building a line drawing movie where I would like the user to be able to change colors using the AdvColorPicker I downloaded from Sephiroth.it.I don't know how to write the code that will change the line color upon picking one from the AdvColorPickerHere is the actionsript for the line drawing:

ActionScript Code:
colors.onMouseDown = function() {
if (1) {

[code]......

View 9 Replies

ActionScript 2.0 :: Filling The Screen With An Empty Movieclip?

Sep 21, 2009

I'm making a lightbox type of effect in flash. How would I go about making the semi transparent layer that covers up the background fill the screen so if the screen is readjusted it remains covered?

View 2 Replies

ActionScript 3.0 :: Using Large Loaded Jpg To Heighten Clarity / Crispness?

Sep 9, 2011

I have a gallery on my flash site.The way I'm working this is as follows:layer 1 that runs through all frames:var loader1:Loader = new Loader();when a button is clicked, the playhead goes to a certain frame and does this:[code]As a side note, I am also using Greensock's liquid stage to scale this holder up to a certain set size.Now I've noticed that when I blow up the screen, my loaded jpg loses some of its crispness, which is to be expected.I've also noticed this is remedied if I import a larger image than I need I get a nice crisp image.  For example, I have been loading in an image that is 960 x 640 into my 'holder' which is 960 x 640.But when I load a larger image (1200 x 800 or larger) say, the image is nice and crisp.Only problem is it fills up the whole screen until I begin to resize my browser, then it snaps into place and is scaled correctly by staying crisp.Any way to tell this loaded image to not come in at it's big size, but to scale down appropriately w/o me scaling down my browser window?

View 4 Replies

ActionScript 3.0 :: Know When A FloodFill Is Done?

May 15, 2009

I've been playing with AS3 bitmap manipulation, cool stuff, but I have a question/concern:

How do I know when a floodFill is done?

I'm floodFill'ing a section of a bitmap, then immediately checking to see if the bitmap is equal to another bitmap with .compare.

If I don't slow the .compare down with a timer (just one second) the compare is comparing the old bitmapData.

View 1 Replies

ActionScript 3.0 :: FloodFill Not Working With Transparent BirmapData

Aug 24, 2009

I hav a movie [instance name : myObject] clip with some pattern design in it. Now i hav converted it to Bitmap to use FloodFill method on Runtime. code in which The floodFill not working:

Code:
var bitmapData:BitmapData = new BitmapData(350, 450, true, 0x00FF0000);
bitmapData.draw(myObject);
var con:Bitmap = new Bitmap(bitmapData);

[Code].....

i hav set the transparency to false, it Works. But i hav a object in background that i hav to keep visible to user.

View 0 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 :: Dynamic Changing Movieclip Color And Text Color?

Jul 28, 2009

I have a movie clip where it contains an instance of text

I able to change the movie clip and text color individually

but when i try to change both at once the text color is same as movie clip color

ActionScript Code:
myColor = new Color(myMovieClip);
myTextColor= new Color(myMovieClip.myText);

[Code].....

View 3 Replies

Flash :: Change CS5 Line Numbers Color?

Mar 5, 2011

Is there a way to change the color of the line numbers in the Actions Panel / .as file on Mac OS X?

i see the Windows version of Flash CS5 has this ability, or is colored blue/cyan by default (see screenshot) while the Mac version is gray.

View 1 Replies

Actionscript 3.0 :: Changing Sprite Line Color?

Jan 31, 2009

Is it possible to smoothly change the color of the line in this sprite over a period of time?Code: Select allvar sp:Sprite = newSprite();addChild(sp);sp.graphics.lineStyle(3, 0x31FF1A);I saw a bit of code that used Tweener to do this with a movie clip, but I can't make Tweener work with a sprite.

View 3 Replies

ActionScript 2.0 :: Change Line Color Of Drawing API?

Nov 25, 2004

Drawing a line runtime with the drawing API:

_root.createEmptyMovieClip ("line",1);
// with set color 0x000000 :
lineStyle (2, 0x000000, 100);
...

but after the line is draw, want to change the color of "line" The:

mYColor = new Color(line);
//mYColor = new Color(_root.line);
myColor.setRGB(0x00FF00);

is not working, for this Is there any other way to change the color or need to draw again the line?

View 1 Replies

ActionScript 3.0 :: Line Color Wrong - Bug Or Feature?

Jan 21, 2010

So when I call lineTo() and then next call lineStyle() with a new color - that previous lineTo gets drawn in the new color, not whatever color was previously set. It is strange but I don't know if there is some kind of justification for the behaviour?Example: this is meant to draw 2 white lines but the second is drawn in blue if I do a blue lineStyle immediately after. Insert a moveTo or similar "end-draw" function then it's ok. seems broken to me...

//EDIT: - put this rect draw bit first
graphics.beginFill(0x000000);graphics.drawRect(0,0,50,50);
graphics.lineStyle(1, 0xFFFFFF);
graphics.moveTo(0,5);
graphics.lineTo(30,5);

[Code]...

View 3 Replies

ActionScript 2.0 :: LineStyles - Change Line Color

Jun 25, 2004

I am doing a drag and drop game where lines are drawn between two movieClips (one fixed and one draggable). At the moment the lineStyles properties are set up within the initiation function and then used to draw the lines. I now have the problem that for some lines I have to change its color and I think the on enterFrame event is messing everythiong up; I can change all of their colors at a time but not one at a time :< the line snippet of the code that deals with lines are below...

[Code]...

View 2 Replies

ActionScript 2.0 :: Change Line Color Of Drawing API

Nov 25, 2004

Drawing a line runtime with the drawing API:

[Code]...

is not working, for this Is there any other way to change the color or need to draw again the line?

View 1 Replies

Flex :: Set Background Color Of Line Series Chart?

Nov 22, 2009

I have a Line Series Chart in Flex with values from 0 to 90. I would like to set the background of the chart in such a way that, 0 - 30 is in green, 31 - 60 is in red and 61 - 90 is in blue.

View 2 Replies

ActionScript 3 :: Applying A Color Gradient On A Line Using Flash

Dec 20, 2009

I am trying to construct a line dynamically, with a start and end gradient. I want to avoid using a GradientBox, as the lines are dynamic. All I want to do is have the line start red, end blue. This code does not work though :(

[Code]...

View 1 Replies

ActionScript 2.0 :: Line And Fill Color Of A Drawing Object?

Jan 13, 2009

I have a movieclip containing a vector drawing, can I dynamically change the color of the fill and line in AS2, or do I need to use setRGB and divide the movieclip?

View 1 Replies

ActionScript 3.0 :: Use More Than One Font, Size Or Color On One Line Of Text?

Mar 26, 2009

I'm a noob, so please forgive me if i'm asking something really stupid! I'm doing a group project and i've just got the code from someone else, so i can add my part.

I am trying to add text in actionscript 3 (in a actions frame) simple enough. but.i want to have words next to each other, that have different fonts, font sizes and colors. I've been googling and experimenting for most of the day and haven't really got anywhere.

I will post what i have and what i would like to do, and if someone can help me, i would be most grateful.

Here the code that i'm working with:

[Code]...

When i first got the code, all that was there, was the info.text = "Animal...... line, i added the rest and also tried adding other line of code to make other words be in different fonts, but it didn't work.

So heres what i'm trying to do; I would like to have the headings, example; Animal name, Animal Type.. in one font, and the answers, example; Kangaroo, Mammal in another font.As it is at the moment, it look crap, because its all in the same font, color and size.

View 2 Replies

Flex :: Changing The Color Of The Highlighted Line In Debugging Mode?

Nov 15, 2011

Thing is, after applying a new color theme for my Flash Builder enviroment, the only thing I couldnt find was an option to change the color when you enter in debug mode. When you have a brakpoint there, the color of that line change to light green, and I got dark background and white characters.. so, I dont see anything, I have to manually highlight the line.. really annoying.

View 1 Replies

ActionScript 3.0 :: Control A Movieclip Time Line From The Main Time Line?

May 15, 2011

What I have is a movieclip and a button in scene 1 (which is the main timeline).There is an actionscript layer also on the main timeline. what I want to do is when I click the button, it would do a nextFrame(); in the movieclip timeline instead of the main timeline.

View 4 Replies

ActionScript 2.0 :: Code In Flash To Read It Line By Line But Its Only Showing The First Line Out Of 5 Lines?

Dec 17, 2009

i have an xml file and i want my code in flash to read it line by line but its only showing the first line out of 5 lines.Below is the code:

var NigeriaNumber:Number;
var stateName:String;
var year:String;

[code].....

View 0 Replies

ActionScript 3.0 :: Color Parameter Passing - Assigning A Color To Its Color Field

Feb 6, 2010

i have a button, with instance name lightblue_color. I am assigning a color to its color field like this: lightblue_color.transform.colorTransform.color = 0x65ffff; then i am adding an eventlistener to the button like this: lightblue_color.addEventListener(MouseEvent.CLICK, ChangeColor); Then, in the function: public function ChangeColor(evnt:MouseEvent):void {trace(evnt.target.transform.colorTransform.color);} It prints 0. Why is that? Shouldn't it print 0x65ffff or do i need to do some type conversions?

View 2 Replies

ActionScript 2.0 :: Filling Up An Area Afterwards

Jan 8, 2006

I want to fill up an area after you have drawn several things. For example I have tried to make one:

[Code]....

View 7 Replies

ActionScript 3.0 :: Filling Textbox In Mc With Var From Root?

Mar 29, 2010

So I have this on the first frame of the timeline:

Code:
var bookData:XML;
var contentText:String;
var loader:URLLoader = new URLLoader();

[Code].....

View 2 Replies

Pen Tool Drawing & Bucket Filling

Dec 28, 2009

I come across a problem when i follow the book "classroom in a book series" the Flash CS4 one (Red cover book) Chapter 2 Q.1 I try to draw straight lines or curves but i found i still cannot manage how to use PEN TOOL How can i draw straight line? Also how can i draw absolute vertical or horizontal line with some special combination key like CTRL or SHIFT i tried guessing SHIFT or CTRL while using PEN TOOL but no help

How can i draw curve? i know it depends somehow on whether i hold my click for a new anchor point? Any tutorial which is clear and easy for new comer for fully understanding for PEN TOOL.(Currently i try reading pdf reference from ADOBE Web site and google search but did not make myself understand.)

Q.2 I cannot use bucket filling a shape draw by PEN TOOL(i already search google sites but cannot find one with satisfied causes for this FILLING Problems) like the image shown below(Please click to enlarge this PRINTSCREEN) Tools i used are PEN TOOL drawing a shape first then a BUCKET for filling color.

View 3 Replies

Professional :: Filling Pen Tool Areas?

Jan 24, 2010

This is a very very basic question.I am able to colour and otherwise manipulate elementary vector objects, such as rectangles. Yes, I know how to use the colour panel and the fil land ink pot tool. However, sometimes I can colour a vector shape drawn with the pen tool and sometimes I cannot. It seems completely random.In detail: select keyframe on an empty layer.I make a triangle with the pen tool, and a small circle shows completion. I get a triangle.This is coloured not for the stroke but for the layer. It seems to exist in two densities - a layer coloured line for drawing, a thicker, same-coloured one after selection.However, neither the ink bottle nor the fill tool do anything. I can set the colour in advance, or after the event, through the colour panel or otherwise, nothing. A gradient fill does not even show the guide lines for the fill tool.

View 4 Replies

ActionScript 3.0 :: Filling A Data Grid Using XML?

Mar 20, 2010

I'm trying to map XML tags inside an external file to the cells in a data grid. The only thing on the stage of my movie is a data-grid component with an instance name of dg. The movie loads an XML file named list.xml. Here are the contents of list.xml

<?xml version="1.0"?>
<table>
<row>

[Code]...

However, when I test the movie, only the headings are correctly displayed. The rest of the grid is blank. I know the arrays for the names, prices, and quantities are full of data. I'm just not sure how to put their data into the grid.

View 1 Replies

ActionScript 2.0 :: Filling To Width _x Right From 0(0%) To 200(100%) In Certain Time

Jul 9, 2009

* I have bar 10x200 with filling
* I want the filling to width _x right from 0(0%) to 200(100%) in certain time.

[:::::::::] like so Time has to be in seconds, for example(1.632s) and is changeable in insert text field. Also there should have another text field that substracts seconds off from the insert text field, for example "time=2 seconds" - "minustime=0.5 seconds" = "time=1.5 seconds"

View 1 Replies







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