Drawing Tool - How To Add Stroke To Object

Apr 16, 2009

I'm having a hard time with strokes. First I selected a stroke and the properties panel would not let me change it's thickness. How to add a stroke to an object. We used to have a tool that allowed us to apply a stroke to an object. That is gone now. How we attach a line to an object now?? It looks like Adobe has changed Flash CS4 to be more like Photoshop. It is about as intuitive as a tax form.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Calling Drawing Tool Stroke Styles Presets ?

Mar 28, 2009

Is there a way in as3 to manually call one of the preset line stroke styles? I'm going to be drawing a line in as3 and want to use one of the stroke styles given in the pull down menu (6th down actually) in the line drawing tool in the gui.

View 1 Replies

ActionScript 3.0 :: Calling Stroke Styles From Line Drawing Tool?

Mar 28, 2009

Is there a way in as3 to manually call one of the preset line stroke styles? I need to call one of the stroke styles given in the pull down menu (6th down actually) in the line drawing tool. I.E. I'd like to be able to draw the exact same line via manual calls in as3 that I can draw with the line took in the GUI.

View 1 Replies

ActionScript 3.0 :: Line Tool - Any Way To Show Preview Of Drawing Object?

Jan 26, 2009

Right now I can create a straight line from mouse down to mouse up. What I can't quite get is a preview of that line. does anyone know of a simple way to show a preview of the line while the mouse is still down and the user is moving the mouse?

What I have now:
Code:
var clip:Shape = new Shape();
addChild(clip);
stage.addEventListener(MouseEvent.MOUSE_DOWN, startLine);
stage.addEventListener(MouseEvent.MOUSE_UP, drawLine);
function startLine(evt:MouseEvent) {
clip.graphics.moveTo(mouseX, mouseY);
} function drawLine(evt:MouseEvent) {
clip.graphics.lineTo(mouseX, mouseY);
clip.graphics.lineStyle(1, 0xff9933);
}

View 2 Replies

Professional :: Use The Pen Tool Without A Stroke - Only Fill

Jun 15, 2010

So we're sitting here at the studio trying to figure out how to use the pen tool without a stroke. We do most of the work in Illustrator, then paste it in Flash. Unfortunately, some objects sometimes disappear while breaking the object down, which means that we have to do some actual touchup work in Flash.

View 2 Replies

ActionScript 3.0 :: Pencil Tool - Drawing Above A Image But The Drawing Is Below The Picture

Nov 9, 2010

i've tried to simulate a pencil tool, for drawing above a imagem, but the drawing is below the picture. How fix it?

[Code]....

View 3 Replies

ActionScript 3.0 :: LineGradientStyle - Drawing Hairline Stroke?

Jun 3, 2010

I am trying to draw a hairline stroke 200 px long like in the picture (3 colors). I have tried with this but i am not getting the same results:
Code:
var s:Sprite = new Sprite();
s.graphics.lineStyle(0 );
s.graphics.lineGradientStyle("linear", [0x111111, 0xcccccc,0x111111], [100,100,100], [0,128,255]);
s.graphics.lineTo(200,0);
addChild(s);

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

ActionScript 3.0 :: Eraser In Drawing Tool

Jul 4, 2011

I have a requirement to create a drawing tool. I have completed till where on mouse down i can draw and on mouse up i stop the drawing. Now i want a eraser in place; something very similar to what is there in paint. So on mouse down of the eraser and moving over the line segment should erase the portion of the lines.

View 5 Replies

ActionScript 3.0 :: Line Tool (for Drawing App)?

Jan 26, 2009

right now i can create a straight line from mouse down to mouse up. what i cant quite get is a preview of that line. does anyone know of a simple way to show a preview of the line while the mouse is still down and the user is moving the mouse?what i have now:

Code:
var clip:Shape = new Shape();
addChild(clip);[code]......

View 2 Replies

Pencil Tool - Not Display Drawing Path

Dec 8, 2009

When I select the pencil tool and draw a path it doesn't show it until I release the mouse button!
why?

View 2 Replies

Professional :: Drawing Strokeless Shape With Pen Tool?

Sep 26, 2011

Is it possible to draw a strokeless shape with the pen tool (as in Illustrator)? It is quite tedious to have to go back and remove strokes from my shapes.... especially since I can't see how to do it without clicking on each segment and hitting "delete"!

View 2 Replies

Professional :: Using The Pencil/brush Tool In Drawing An Animation?

Feb 22, 2010

bit of a noob at flash, so I've been having a bit of a difficulty in using the pencil/brush tool in drawing an animation. I set a keyframe, and paint a yellow stroke.  Then i continue onto the next key. I then go back to the first keyframe, and want to paint a black stroke over part of the yellow stroke i made earlier.
 
after selecting this first frame (making the layer active), I go to change the stroke color of the brush to black but find that it now changes my yellow stroke (which I want to keep yellow) to black.  I see that in selecting the frame, by default whatever strokes were made on this frame are also selected (which I don't want). So I'd like to know how do I avoid altering my previous stroke and still put a different colored stroke overlapping it on the same frame?
 
also is it possible to append a brush/pencil stroke to an old brush/pencil stroke?

View 5 Replies

Professional :: Can't Get Pencil Tool Into Merge Drawing Mode?

Nov 29, 2010

I have downloaded the trial version of Adobe Executive Suite CS5. In the Flash Professional CS5 program I am trying to do a drawing with the pencil tool.  In the old version of Flash that I have (4.0) if I draw two lines that overlap, I can delete the line past the point where they cross.  In this version I can't do that.It treats each line I draw as a separate item and won't combine them.  I notice the properties panel says I am in Object mode which would be the reason.  However I can't get it to go to merge mode, which is supposed to be the default.Is this because it's the trial version and not all features work in that version? My email address is[url].... and I can be phoned at 541 782-5904 (Oregon).

View 2 Replies

ActionScript 3.0 :: PHP XML Graph Drawing Tool - .swf Doesn't Seem To Accept The Xml Sheet

Jan 28, 2010

I am attempting to build a tool which creates a graph through data drawn from a MySQL database, however the .swf doesn't seem to accept the xml sheet that is created by the PHP. I was wondering if anyone had any thoughts on this?

View 13 Replies

ActionScript 3.0 :: Drawing Tool - Allow User To Mark Displayed Text

Sep 21, 2011

I want to display text which can be circled/marked over by the user. Also the user must be able to print/erase and move on to a new swf file once the page has been printed off. I have looked at a few different options but as yet I have been unsuccessful with the functionality.

View 1 Replies

ActionScript 3.0 :: Create A Basic Flash Drawing Tool For An ELearning Project?

Jan 19, 2009

i'm a newbie using Flash CS4 and AS3. A retired social worker, I need to create a basic Flash drawing tool for an eLearning project to teach students how to draw their family tree.

The drawing tool would allow the students to add multiple circles and squares to symbolize their family members, plus text labels for names, ages, and they would need to be able to draw connecting lines between the circle and square symbols. Finally, in order to continue work on the drawing, over time, they would need to be able to save their drawings to be re-opened and edited (add new symbols, erase incorrect ones, etc.). Once the drawing is completed, they would need to be able to print a copy.

Being a newbie (but I have done some related scripting: JavaScripting-ECMA-262, HTML, CSS), I am not sure if this can be done in AS3, Flash CS4. But, if it is possible, I would like to learn how to create this.

View 0 Replies

Auto-connect Coordinates Of Drawing To Use Paint Bucket Fill Tool?

Jan 14, 2012

I draw a shape with the pen or line tool. If i did not draw it perfectly connecting the dots, i cannot fill it with the paint buck fill tool. How can you tell it to just close the structure

View 3 Replies

ActionScript 3.0 :: Generate Drawing API Data From Drawing Object?

Jul 22, 2009

Basically I've got a reasonably complex drawing object in a fla and I want to reproduce it in a class definition using the drawing api. However obviously this is a tedious task, so is there some trick or automated method of doing this?

Last time I needed to do this it was a drawing of an arrow and I ended up writing down x,y,width,height values for everything but this one has curves in it which I don't have experience with drawing anyway.

View 2 Replies

Programming Language / Tool For Web-based Visio-like Drawing As Applied To Product Configurator

Jul 28, 2010

I have extensive experience with MS Visio Solution development, and have a need to provide similar functionality in a web interface in the context of a heavily visual product-builder or "configurator". Visio functionality that I hope to reproduce:Visual shapes stored in a sidebar, from which the user drags and drops onto a drawing area Shape creation on the user's end is probably not necessary... just arrangement, sizing, changing parameters etc.A back-end for extracting the parts the user has dropped onto the drawing area, including the parameters they've changed, dimensions, relations between components etc.In the most general sense, I just need an interactive interface.Given the above parameters, is Flash a good option? Is there a development environment that might be better?

View 2 Replies

Possible To Prevent A Stroke's Weight From Scaling With Rest Of Object?

Nov 4, 2009

I want to animate a person moving off into the distance, but while I want the size of the figure to get smaller, I don't want the weight of the lines that comprise the image to scale down, too. I made this little sample of a person skating (poorly) away from the viewer, and I'd like the line weight to be 9 points in the first frame and the last frame. Is there a setting that allows me to exclude stroke weight when scaling and resizing an object?

View 1 Replies

Professional :: Find A Stroke Function Or A Command After Have Broken An Object?

Oct 2, 2011

I've searched all over to try and find a stroke function or a command after I have broken an object, but can't find anything. I want to apply a stroke to multiple frames. use the ink bottle, and do not suggest turning my symbol into a movie clip and adding a glow. This seems like it should be a simple function

View 1 Replies

Alignment Tool - How To Set Reference Object

Jan 1, 2010

I am new to Flash but have used Illustrator and InDesign for years. How to set the reference object by which all other objects are aligned; e.g. Illustrator ->select all objects then a second click on the reference object and all other objects take their cue. InDesign you lock the reference object and that determines the rest. In Flash it seems that either both objects move or the one that I wish to remain in position jumps rather than the other way around.

View 2 Replies

Professional :: Object Disappears After Applying Bone Tool?

Dec 12, 2011

I'm using Flash CS5 proefessional and trying to do a demonstration. The demonstrationincludes a rope-like lanyard that is quite long and needs to bend at many many points. After successfully applying the bone tool to the object, I tried moving it with Free Transform.However, when I do so, the lanyard suddenly disappears, besides a couple tiny pieces. I didn't delete the previous layer, and I had unioned everything before breaking it apart again to apply the Bone tool.

View 3 Replies

ActionScript 3.0 :: Add Object Attributes To A DisplayObject That Is Created In The Authoring Tool

Dec 16, 2009

how can I add attributes to a Display Object, that I have created in the Authoring Tool, so I can acces it by:
 
myDisplayObjectInstance.myNewAttribute
 
Is a DisplayObejct a dynamic class, that can be extended from anywhere?

View 2 Replies

Files Not Saving With Deco Tool Or Spray Brush Tool Selected?

May 6, 2009

I found that .fla files do not save in Flash CS4 when the Deco tool or Spray Brush tool is selected. Is this a bug? Or is there a workaround to this issue.

View 3 Replies

How To Tween Drawing Object

Aug 28, 2009

I've received a number of graphics from an Illustrator user - they imported as symbols containing drawing objects.   When I opened one of these symbols and tried to tween (fade out) the drawing object, I don't have the Alpha option.   I don't use Illustrator myself and I had to install CS4 so I'm not used to that either.

View 4 Replies

ActionScript 3.0 :: Remove / Disable Tool For Objects Using Transform Tool

Jul 6, 2009

Working with senocular Transform Tool - How to remove/disable tool for objects Im new to AS3, and i have to use it for my current project. I have used the AS2 Transform tool extensively, but needless to say, the AS3 version works entirely differently.
The way i understand it, the tool applies to and every Sprite , movieclip on stage

[Code]...

View 2 Replies

Can't Select Parts Of Drawing Object

Oct 23, 2009

Well, I've been using flash a while, but I just ran into a newbie problem.. I must have hit some sort of hotkey, but I can't figure out how to undo it or anything in the preferences. Anyways, I'm running Flash CS4 and normally when you draw a shape and select that shape it selects the fill and it looks like little dots all over the shape when its selected. Now when I click on a shape it has a border around it and I can't just select a piece of the shape. Also, what's bothering me is that when you draw two shapes on top of each other, Flash used to merge those shapes automatically, but now they are staying separate unless I manually Union them. It still says they're drawing objects, its not converting them to symbols or anything, but they are kind of acting like symbols in the way I can interact with them. How can I turn this setting off?

View 2 Replies

Drawing Object Looses Roundness When Enlarged

Aug 10, 2009

In my movie I have a round drawing object, which I wish to view enlarged (about 2000% of original size). While editing it looks fine and round but after publishing all the roundness is lost and instead I get visible angles. I attach 2 images to visualize, one from the editing stage and the other after publishing. Is there any way I can get around that strange effect? I created the image from some text i "broke apart" to a drawing object.
Attachments:
edit.png (2.5 K)
published.png (1.3 K)

View 6 Replies







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