Drawing tools (pen, pencil, brush) wont keep style selection.

I can not seem to have any of the drawing tool (pen, pencil or brush) keep the stlye selection I assign to it.  I have to KEEP going back to the line I just drew selcet is and assign the stlye to it once again.  This makes for a VERY SLOW process/drawing.  Any ideas where I can adjust the settings so that the style STAYS on the tool when drawing?
Many thanks!

Go to the Appearance Panel and from the flyout menu uncheck New Art Has Basic Appearance and that should solve your problem. If in the future you need this not to work this way rememeber to check it again.

Similar Messages

  • Ai, 3D effect - after using to either extrude or revolve the settings are retained in my drawing tools - pen, pencil and shapes. Example I draw a 50 pt extruded object in wireframe, isometric view and my pen and all drawing tools will only draw using thos

    Ai, 3D effect - after using to either extrude or revolve the settings are retained in my drawing tools - pen, pencil and shapes. Example I draw a 50 pt extruded object in wireframe, isometric view and my pen and all drawing tools will only draw using those settings. I can not exit, help please!

    Appearance panel menu > New art has basic appearance.

  • Draw a pen path, then a script to select/copy and close activeDocument

    Is this possible?
    I do this step 90 times every day:
    Select a image area drawing a pen path zone, and copying it to the clipboard.
    Then close without save.
    Then I use the selection on clipboard to paste it on the previous opened image.
    P.S. I use paths because I need to have a more accurate and precise curves.

    Does this help?
    // get active path, close document without saving, create path;
    // 2011, use it at your own risk;
    #target photoshop
    if (app.documents.length > 1) {
    // identify path;
    var thePath = selectedPath();
    if (thePath != undefined) {
    var myDocument = app.activeDocument;
    // set to pixels;
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // collect info;
    var thePathInfo = collectPathInfoFromDesc(myDocument, thePath);
    // close withpout saving;
    myDocument.close(SaveOptions.DONOTSAVECHANGES);
    // create path;
    createPath(thePathInfo, dateString());
    // reset;
    app.preferences.rulerUnits = originalRulerUnits;
    else {alert ("no path selected")}
    ////// determine selected path //////
    function selectedPath () {
    try {
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID("Path"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var desc = executeActionGet(ref);
    var theName = desc.getString(charIDToTypeID("PthN"));
    return app.activeDocument.pathItems.getByName(theName)
    catch (e) {
    return undefined
    ////// collect path infor from actiondescriptor //////
    function collectPathInfoFromDesc (myDocument, thePath) {
    //var myDocument = app.activeDocument;
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.POINTS;
    // based of functions from xbytor’s stdlib;
    var ref = new ActionReference();
    for (var l = 0; l < myDocument.pathItems.length; l++) {
         var thisPath = myDocument.pathItems[l];
         if (thisPath == thePath && thisPath.name == "Work Path") {
              ref.putProperty(cTID("Path"), cTID("WrPt"));
         if (thisPath == thePath && thisPath.name != "Work Path" && thisPath.kind != PathKind.VECTORMASK) {
              ref.putIndex(cTID("Path"), l + 1);
         if (thisPath == thePath && thisPath.kind == PathKind.VECTORMASK) {
            var idPath = charIDToTypeID( "Path" );
            var idPath = charIDToTypeID( "Path" );
            var idvectorMask = stringIDToTypeID( "vectorMask" );
            ref.putEnumerated( idPath, idPath, idvectorMask );
    var desc = app.executeActionGet(ref);
    var pname = desc.getString(cTID('PthN'));
    // create new array;
    var theArray = new Array;
    var pathComponents = desc.getObjectValue(cTID("PthC")).getList(sTID('pathComponents'));
    // for subpathitems;
    for (var m = 0; m < pathComponents.count; m++) {
         var listKey = pathComponents.getObjectValue(m).getList(sTID("subpathListKey"));
         var operation = thePath.subPathItems[m].operation;
    // for subpathitem’s count;
         for (var n = 0; n < listKey.count; n++) {
              theArray.push(new Array);
              var points = listKey.getObjectValue(n).getList(sTID('points'));
              try {var closed = listKey.getObjectValue(n).getBoolean(sTID("closedSubpath"))}
              catch (e) {var closed = false};
    // for subpathitem’s segment’s number of points;
              for (var o = 0; o < points.count; o++) {
                   var anchorObj = points.getObjectValue(o).getObjectValue(sTID("anchor"));
                   var anchor = [anchorObj.getUnitDoubleValue(sTID('horizontal')), anchorObj.getUnitDoubleValue(sTID('vertical'))];
                   var thisPoint = [anchor];
                   try {
                        var left = points.getObjectValue(o).getObjectValue(cTID("Fwd "));
                        var leftDirection = [left.getUnitDoubleValue(sTID('horizontal')), left.getUnitDoubleValue(sTID('vertical'))];
                        thisPoint.push(leftDirection)
                   catch (e) {
                        thisPoint.push(anchor)
                   try {
                        var right = points.getObjectValue(o).getObjectValue(cTID("Bwd "));
                        var rightDirection = [right.getUnitDoubleValue(sTID('horizontal')), right.getUnitDoubleValue(sTID('vertical'))]
                        thisPoint.push(rightDirection)
                   catch (e) {
                        thisPoint.push(anchor)
                   theArray[theArray.length - 1].push(thisPoint);
              theArray[theArray.length - 1].push(closed);
              theArray[theArray.length - 1].push(operation);
    // by xbytor, thanks to him;
    function cTID (s) { return cTID[s] || cTID[s] = app.charIDToTypeID(s); };
    function sTID (s) { return sTID[s] || sTID[s] = app.stringIDToTypeID(s); };
    // reset;
    app.preferences.rulerUnits = originalRulerUnits;
    return theArray;
    ////// function to create path from array with one array per point that holds anchor, leftdirection, etc, 2010 //////
    function createPath (theArray, thePathsName) {
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.POINTS;
    lineSubPathArray = new Array ();
    if (theArray[theArray.length - 1].constructor != Array) {var numberOfSubPathItems = theArray.length - 1}
    else {var numberOfSubPathItems = theArray.length};
    for (var b = 0; b < numberOfSubPathItems; b++) {
         var lineArray = new Array ();
         for (c = 0; c < (theArray[b].length - 2); c++) {
              lineArray[c] = new PathPointInfo;
              if (!theArray[b][c][3]) {lineArray[c].kind = PointKind.CORNERPOINT}
              else {lineArray[c].kind = theArray[b][c][3]};
              lineArray[c].anchor = theArray[b][c][0];
              if (!theArray[b][c][1]) {lineArray[c].leftDirection = theArray[b][c][0]}
              else {lineArray[c].leftDirection = theArray[b][c][1]};
              if (!theArray[b][c][2]) {lineArray[c].rightDirection = theArray[b][c][0]}
              else {lineArray[c].rightDirection = theArray[b][c][2]};     
         lineSubPathArray[b] = new SubPathInfo();
         lineSubPathArray[b].closed = theArray[b][theArray[b].length - 2];
         lineSubPathArray[b].operation = theArray[b][theArray[b].length - 1];
         lineSubPathArray[b].entireSubPath = lineArray;
    var myPathItem = app.activeDocument.pathItems.add(thePathsName, lineSubPathArray);
    app.preferences.rulerUnits = originalRulerUnits;
    return myPathItem
    ////// function to get the date //////
    function dateString () {
         var now = new Date();
         var day = now.getDate();
         day = bufferNumberWithZeros(day, 2);
         var month = now.getMonth();
         month++;
         month = bufferNumberWithZeros(month, 2);
         var year = now.getFullYear();
         var hour = now.getHours();
         hour = bufferNumberWithZeros(hour, 2);
         var minutes = now.getMinutes();
         minutes = bufferNumberWithZeros(minutes, 2);
         var seconds = now.getSeconds();
         seconds = bufferNumberWithZeros(seconds, 2);
         var myDateText = year+"-"+month+"-"+day+"_"+hour+"-"+minutes+"-"+seconds;
         return myDateText
    ////// buffer number with zeros //////
    function bufferNumberWithZeros (number, places) {
         var theNumberString = String(number);
         for (var o = 0; o < (places - String(number).length); o++) {
              theNumberString = String("0" + theNumberString)
         return theNumberString

  • Drawing tools not working properly!

    Ok soo whenever I try to draw something in flash with my
    tablet, the pen/pencil/brush strokes jump across the screen. Im not
    sure if it has to do with pen pressure or other tablet settings
    because it works just fine with the regular mouse. I think that it
    may have to do with the fact that I have an older version of flash
    and a new Wacom tablet. Please help!

    No, you just updated your OS to 10.10.2 which doesn't get along well with Adobe apps. Keep your adobe stuff on the main screen (the one with the menu bar in the OS Prefs>Display dialog). Adjust as necessary.

  • I can not change the style of a pencil,brush, or pen. The options are greyed out. Anyone know what I am doing wrong???

    I can not change the style of a pencil,brush, or pen. The options are greyed out. Anyone know what I am doing wrong???

    Hi,
    Stroke styles are disabled in HTML5 Canvas document type as the target platform doesn't support those. Please check your document tab if it reads '<yourfilename> (Canvas)' then you have created a HTML5 Canvas document.
    If you have created HTML5 document by mistake, then you can copy paste your layers into AS3 document then you can change the stroke style to your desired option.
    Thanks!
    Mohan

  • How to keep pen and brush's setting as per layer

    Hi , is there anyway to keep the pen and brush setting remember as per layer , let say i have 2 layers of different stroke setting , after i draw 1 to another , it always revert to 1pt stroke width automatically .
    i want to keep all the setting : transparency , color , stroke width to be remembered in layer . Therefore, i dont need to change again or remember whenever i draw in between layers.
    Thanks in advance .

    Brushes have nothing to do with Layers. So no, you can't associate/restrict a given Brush to a given Layer. However, you can:
    1. New document. Define two Layers.
    2. Brush Tool: Draw something on Layer 1 with a Brush.
    3. Brush Tool: Draw something on Layer 2 with a different Brush.
    4. Appearance Palette: Set the New Art button to Maintains Appearance.
    5. Press Ctrl to momentarily invoke the black pointer. Select the path you drew on Layer 1. Layer 1 becomes the active Layer and the Appearance of the object you select becomes the current Appearance.
    6. Release Ctrl and draw anothet path. It is on Layer 1 and has the same Appearance of other items on Layer 1.
    7. Press Ctrl, select an object on Layer 2.
    8. Release Ctrl, draw another stroke on Layer 2.
    ...and so on.
    JET

  • HI everybody i want to ask if you come me in help, i want to draw paths but when i use stroke options with pen or brush settings i loose quality when i zoom in , can someone help me with pen settings???

    HI everybody i want to ask if you come me in help, i want to draw paths but when i use stroke options with pen or brush settings i loose quality when i zoom in , can someone help me with pen settings???

    The work path is a vector object, and infinitely scalable, but when you stroke it, Photoshop lays pixels on a layer that follow the path.  These pixels are raster based and can not be scaled without loosing quality.  You do have options.  If you want to make the raster layer bigger, transform the work path and stroke it again.  Or work at a higher resolution in the first place.
    Incidentally, you can't stroke a Path with the Pen, because it is a Vector based tool, and stroking is a raster based function.

  • When I try to use the Smart Brush I keep getting this message "Could not use the Smart Brush tool because it is not a valid Photoshop document"

    When I try to use the Smart Brush I keep getting this message "Could not use the Smart Brush tool because it is not a valid Photoshop document". Can someone please help me fix this? It's never done this before until now...

    First go to the editor preferences>general and click this button, then restart the editor and try again. If that doesn't do it, more info, like your version of PSE and your operating system:

  • CSS Styles Panel and DIV Draw tool

    In Dreamweaver CS6 Creative Cloud, how do I access the CSS styles palate/panel and is there a DIV DRAW tool, or do you resort to the tracing tool to draw website layouts?

    DW is not a graphics app.  You cannot draw layouts on screen.  You need to use CSS code to create the basic layout and HTML for your structure. 
    You may find it helpful to jump start your projects with one of the pre-built CSS Layouts in Dreamweaver CS6.
    Go to File > New > Blank Page > HTML > Select one of the Layouts in the 3rd panel and hit the Create button.  SaveAs filename.html.
    Learn to use CSS floats, margins and padding to align elements.
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Centering Pages, Images and other elements with CSS
    http://cookbooks.adobe.com/post_Centering_web_pages_and_other_elements_with_CSS-16640.html
    Nancy O.

  • CS4 crashes when I send to print and pen tool loses the ability to keep the attributes of a multi-stroked line.

    Using Illustrator CS4 (can't upgrade because the office I am contracted with will not upgrade) on a Mac running Mavericks 10.9.5 (just upgraded from 10.6). CS4 crashes when I send to print (I've been saving as a PDF and printing that). Also, the pen tool loses the ability to keep the attributes of a multi-stroked line.

    Thanks, Larry. I should have remembered the "…Basic Appearance…" thingy. I've tutored enough people in Illustrator—it just never occurred to me. As for the printer, I'll give that a shot. I'll fumble my way around in that; not sure exactly how to go about doing it, but I'm game. Thank you for your help.   — Jim

  • I cannot stop my pen and brush tools from looking 'jagged' instead of smooth (like a zigzag pattern).  Mac user.  Thank you.

    I cannot get my pen and brush tools to look smooth instead of jagged.  They look like 'zig zag' patterns.  Using Mac/photoshopCS5.  Suggestions?  Thank you.-Lynn

    Look under Brush Tip Shape and look at the spacing settings or that spacing is not unchecked. (the default spacing is usually 25%)
    For tapered strokes set the Size Jitter under Shape Dynamics to Pen Pressure, then the size varies depending on how hard you press the pen on the tablet.

  • Several Bugs in Flash, drawing tools unusable now

    So frustrating. It's clear Adobe won't do anything to fix their broken drawing tools in Flash, and every version is more broken and less useful than the previous one.
    Glitches:
    1. Pencil tool is jittery, inserts so many points and jagged parts that it makes it an unusable line. Pencil tool is on smooth setting at 100%.
    2. So I moved to using the pen tool even though it's slower to my workflow, but when drawing with it moves points away randomly making every point broken in the segment. So both pencil drawing tools do not work at all.
    3. When saving a file, after typing a letter it highlights the whole file name so if I keep typing it erases everything. Frustrating when saving several versions of a file.
    4. When using outline onion skin mode, it turns all layers into outlines as well instead of filled in colors, making it impossible to see which is the onion skin and which is the drawing.
    5. Flash randomly loses its display of all windows and I end up losing my work.
    Technical info:
    I am using the most up to date version of Flash Pro CC on a Windows 7 computer with an Intuos Pro tablet with driver Driver 6.3.11-4a.
    I will not be using Flash anymore and will be migrating to Toon Boom and recommending all animation studios I work at to do the same. It's clear Adobe does not care about Flash as an animation tool with each broken update.

    This has more to do with your tablet than Flash and #5. makes me think either your graphic card is going or you  don't have enough memory to display what you're drawing. I draw at least 12 hours a day in Flash at least six days a week and never have these problems but then I have 24gb of memory installed and a 6 gb video card. What I'm saying is these aren't bugs so much as issues with your hardware. Maybe roll back your driver? Or it's just possible that your computer simply can't handle the vector calculations or that your tablet is too old to handle Flash. In any event I can't really agree this is an Adobe thing. Here's something I drew in Flash late last year and you can see my line is clean.

  • Collage Drawing tools

    Why do all of my drawing tools look exactly the same? Even the pencil has no texture.

    The four different drawing tools are more like default styles of a similar tool. The lack of texture on the pencil for you might be due to the fact that it's preset at a very small size. The texture also shows up more clearly on a dark background.
    Above I've labeled all of the different strokes made by the different tools. Each has different default settings for opacity and size based on the tools they're mimicking (sharpie, ball-point pen, pencil, etc.)

  • Drawing with a pencil = circles and rectangles

    When I am drawing with a pencil, the line looks like the shape I want to draw, but when I stop drawing, the shape reshapes to another shape whick looks like circles and rectangles = it does not look like the shape I wanted to draw. What is the problem?

    at the bottom of the tools panel click the pencil mode icon and choose ink or, use the brush tool if you want no adjustment to your drawing.

  • Width Tool For Calligraphic Brushes

    I would really love it if the new width tool worked for calligraphic brushes so that once I drew a brush stroke with a pressure sensitive tablet I could adjust the width if I didn't like how it turned out.

    The pen tool does work on paths created with the brush, you have to select the path after drawing it to target which path the pen tool will edit.
    toggle CMD Y to se the paths, and then to go back to preview mode.

Maybe you are looking for