Brush is making dots instead of a line

Last night in CS5 I was playing with the opacity and spacing of the brush, and now I can't get back to a normal brush.
I want just a normal stroke, but the brush is making lots of transparent dots instead.
I've switched to Photoshop Elements 7 for now and everything is fine there, it's only CS5. 

Have you tried choosing a different brush preset? (With the Brush tool selected, right-click on your canvas and choose something from the list)
Have you tried resetting the Brush tool? (right-click the brush tool icon in the upper left, next to all the options, and choose "Reset Tool")

Similar Messages

  • All tools in Photoshop CS5 not moving smoothly (only making dots instead of lines)

    All my tools in Photoshop CS5, including the brush, eraser, healing brush, etc. are only making dots, instead of drawing smooth lines. When using the brush tool, for example, if I click down and drag my mouse to draw something, only the initial dot for where I clicked down gets colored in. Does anyone have any ideas as to why?

    Does anything jump out to you that could be causing this problem? Also, my lasso tool doesn't work properly as I can't drag anywhere. The move tool also doesn't work properly. I can click down and drag a layer, but after I release my click, the layer moves back to its previous position. The only way to move any layers is by free-transforming them.

  • I wanna dots instead of displaying it as a whole line in Linechart

    Hi Folks,
    I had one small doubt in the output of this program. The program is related to LineChart..Actually, Im getting the output as Line in the chart, but my requirement is to display only dots instead of displaying as a line...
    I just want only displaying as dots at particular name, insteading of getting that whole line from beginning to end...
    First of all whether its posiible to get dots or not?? and if it is possible, how??
    Here is the code:
    package com.home.practise.streams;
    import java.awt.BasicStroke;
    import java.awt.Color;
    import java.awt.Polygon;
    import java.awt.Shape;
    import java.awt.geom.Rectangle2D;
    import org.jfree.chart.ChartFactory;
    import org.jfree.chart.ChartPanel;
    import org.jfree.chart.JFreeChart;
    import org.jfree.chart.axis.NumberAxis;
    import org.jfree.chart.plot.CategoryPlot;
    import org.jfree.chart.plot.DefaultDrawingSupplier;
    import org.jfree.chart.plot.DrawingSupplier;
    import org.jfree.chart.plot.PlotOrientation;
    import org.jfree.chart.renderer.category.LineAndShapeRenderer;
    import org.jfree.data.category.CategoryDataset;
    import org.jfree.data.category.DefaultCategoryDataset;
    import org.jfree.ui.ApplicationFrame;
    import org.jfree.ui.RefineryUtilities;
    public class LineChartDemo5 extends ApplicationFrame {
        public LineChartDemo5(final String title) {
            super(title);
            final CategoryDataset dataset = createDataset();
            final JFreeChart chart = createChart(dataset);
            final ChartPanel chartPanel = new ChartPanel(chart);
            chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
            setContentPane(chartPanel);
        private CategoryDataset createDataset() {
            // row keys...
            final String series1 = "First";
            final String series2 = "Second";
            final String series3 = "Third";
            // column keys...
            final String type1 = "Hari";
            final String type2 = "Chary";
            final String type3 = "Trinetra";
            final String type4 = "Naveen";
            final String type5 = "Type 5";
            final String type6 = "Type 6";
            final String type7 = "Type 7";
            final String type8 = "Type 8";
            // create the dataset...
            final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
            dataset.addValue(0, series1, type1);
            dataset.addValue(0, series1, type2);
            dataset.addValue(1, series1, type3);
            dataset.addValue(1, series1, type4);
            /*dataset.addValue(5.0, series1, type5);
            dataset.addValue(7.0, series1, type6);
            dataset.addValue(7.0, series1, type7);
            dataset.addValue(8.0, series1, type8);*/
            /*dataset.addValue(5.0, series2, type1);
            dataset.addValue(7.0, series2, type2);
            dataset.addValue(6.0, series2, type3);
            dataset.addValue(8.0, series2, type4);
            dataset.addValue(4.0, series2, type5);
            dataset.addValue(4.0, series2, type6);
            dataset.addValue(2.0, series2, type7);
            dataset.addValue(1.0, series2, type8);
            dataset.addValue(4.0, series3, type1);
            dataset.addValue(3.0, series3, type2);
            dataset.addValue(2.0, series3, type3);
            dataset.addValue(3.0, series3, type4);
            dataset.addValue(6.0, series3, type5);
            dataset.addValue(3.0, series3, type6);
            dataset.addValue(4.0, series3, type7);
            dataset.addValue(3.0, series3, type8);*/
            return dataset;
        private JFreeChart createChart(final CategoryDataset dataset) {
            final JFreeChart chart = ChartFactory.createLineChart(
                "visualization",      // chart title
                "Names",                   // domain axis label
                "Gender",                  // range axis label
                dataset,                  // data
                PlotOrientation.VERTICAL, // orientation
                true,                     // include legend
                true,                     // tooltips
                false                     // urls
    //        final StandardLegend legend = (StandardLegend) chart.getLegend();
      //      legend.setDisplaySeriesShapes(true);
            final Shape[] shapes = new Shape[3];
            int[] xpoints;
            int[] ypoints;
            // right-pointing triangle
            xpoints = new int[] {-3, 3, -3};
            ypoints = new int[] {-3, 0, 3};
            shapes[0] = new Polygon(xpoints, ypoints, 3);
            // vertical rectangle
            shapes[1] = new Rectangle2D.Double(-2, -3, 3, 6);
            // left-pointing triangle
            xpoints = new int[] {-3, 3, 3};
            ypoints = new int[] {0, -3, 3};
            shapes[2] = new Polygon(xpoints, ypoints, 3);
            final DrawingSupplier supplier = new DefaultDrawingSupplier(
                DefaultDrawingSupplier.DEFAULT_PAINT_SEQUENCE,
                DefaultDrawingSupplier.DEFAULT_OUTLINE_PAINT_SEQUENCE,
                DefaultDrawingSupplier.DEFAULT_STROKE_SEQUENCE,
                DefaultDrawingSupplier.DEFAULT_OUTLINE_STROKE_SEQUENCE,
                shapes
            final CategoryPlot plot = chart.getCategoryPlot();
            plot.setDrawingSupplier(supplier);
            chart.setBackgroundPaint(Color.yellow);
            // set the stroke for each series...
            plot.getRenderer().setSeriesStroke(
                0,
                new BasicStroke(
                    2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
                    1.0f, new float[] {10.0f, 6.0f}, 0.0f
            plot.getRenderer().setSeriesStroke(
                1,
                new BasicStroke(
                    2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
                    1.0f, new float[] {6.0f, 6.0f}, 0.0f
            plot.getRenderer().setSeriesStroke(
                2,
                new BasicStroke(
                    2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
                    1.0f, new float[] {2.0f, 6.0f}, 0.0f
            // customise the renderer...
            final LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot.getRenderer();
    //        renderer.setDrawShapes(true);
            renderer.setItemLabelsVisible(true);
         //   renderer.setSeriesLinesVisible(0, false);
       //     renderer.setBaseLinesVisible(false);
      //      renderer.setBaseShapesVisible(true);
      //      renderer.setSeriesLinesVisible(1, true);
      //      renderer.setLabelGenerator(new StandardCategoryLabelGenerator());
            // customise the range axis...
            final NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis();
            rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
            rangeAxis.setAutoRangeIncludesZero(false);
            rangeAxis.setUpperMargin(0.12);
            return chart;
        public static void main(final String[] args) {
            final LineChartDemo5 demo = new LineChartDemo5("Line Chart Demo 5");
            demo.pack();
            RefineryUtilities.centerFrameOnScreen(demo);
            demo.setVisible(true);
    }And here is the link, I have just used the above program from this link only
    http://www.java2s.com/Code/Java/Chart/JFreeChartLineChartDemo5showingtheuseofacustomdrawingsupplier.htm

    It looks like you're using BasicStrokes to create dashed lines
    plot.getRenderer().setSeriesStroke(
        0,
        new BasicStroke(
            2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
            1.0f, new float[] {10.0f, 6.0f}, 0.0f
    plot.getRenderer().setSeriesStroke(
        1,
        new BasicStroke(
            2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
            1.0f, new float[] {6.0f, 6.0f}, 0.0f
    plot.getRenderer().setSeriesStroke(
        2,
        new BasicStroke(
            2.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND,
            1.0f, new float[] {2.0f, 6.0f}, 0.0f
    ); Is this not what you want? If you want points instead of dashes you just specify *1f* for first argument in the float array
    new BasicStroke(...,...,...,...,new float[]{1f,6f},....); That indicates that you want the dashed regions to be ~1 pixel long - that is, a point - and the empty regions between the dashes to be ~6 pixels long.

  • When formatting a date field in a where clause the template put dot instead of comma

    Hello to Headstart Workers !
    In a query find block the template construct a where clause, in some cases, and i dont know when the template is formatting a date field putting a dot instead of a comma.
    Ex.: to_date('19-01-2001'.'DD-MM-YYYY')
    Anybody knows why or where the template do this.
    Congratulations
    Nelson

    - We created it using the HS utilities.
    - "nls_numeric_character = ,.".
    - it onky happen when the field date is not the first field in the where clause.
    - i can see the problem just after pressing find button, already in the ls_block in last_query.
    - the find_query works normally but cannot edit any line in ls_block.
    Hope that i had helping
    Regards
    Nelson
    null

  • PR instead of Schedule lines

    Guru's
    I am trying to create auto schedule lines for SA -LPA type and in MD02 i am getting PR's instead of Schedule lines......I have done all the necessary settings and i don't know where i am doing wrong.
    I have tried changing the MRP types from PD to manual reorder point planning.
    Please advise me with your inputs.
    Regards
    Mittu G

    Hi
    While running MD02
    select following options in
    create purchase requisition           1
    Delivery schedules                         1
    then try
    Vishal...

  • Using MD42 purchase requisitions creating instead of schedule lines

    Hi PP Guru's
    Can any one help while using MD42/MD43 purchase requisitions generating instead of schedule lines.
    MRP Type :M0
    what are the required settings for this..?
    please help me to solve this issue.

    Hello
    This is a link to a note and you need to have access to SAP service marketplace.
    Please ask your system admin/basis and he will be able to provide you an user.
    The following information from the note should be relevant for you:
    If the flag "SC Vendor" is checked on the scheduling agreement, this source list entry will only be considered on a third-party order processing scenario with MRP areas.
    If you are not using MRP areas, this source list entry will not be considered and the vendor/schedule agreement will not be selected. This setting can be found on transaction ME32, on the menu path "ITEM" - "MORE FUNCTIONS" - "DELIVERY ADDRESS". See note 214298 for more details.
    BR
    Caetano

  • Purchase Requisitions created instead of Schedule lines

    Hi Experts,
    When I run MRP for materials with mrp type as PD, MRP creates Purchase Requisitions instead of Schedule lines
    I have Scheduling agreement in place.
    Kindly let me know what could be the possible reasons for this
    Thanks & regards,
    Shashidhar

    Hi
    While running the MRP, Check the input parametrs.
    Check the MRP control Parametrs
    Delivery schedules - ensure that Schedule lines has been created.
    Check it out.
    Raman

  • I would like to read a text file in which the decimal numbers are using dots instead of commas. Is there a way of converting this in labVIEW, or how can I get the program to enterpret the figures in the correct way?

    The program doest enterpret my figures from the text file in the correct way since the numbers contain dots instead of commas. Is there a way to fix this in labVIEW, or do I have to change the files before reading them in the program? Thanks beforehend!

    You must go in the labview option menu, you can select 'use the local
    separator' in the front side submenu (LV6i).
    If you use the "From Exponential/Fract/Eng" vi, you are able to select this
    opton (with a boolean) without changing the labview parameters.
    (sorry for my english)
    Lange Jerome
    FRANCE
    "Nina" a ecrit dans le message news:
    [email protected]..
    > I would like to read a text file in which the decimal numbers are
    > using dots instead of commas. Is there a way of converting this in
    > labVIEW, or how can I get the program to enterpret the figures in the
    > correct way?
    >
    > The program doest enterpret my figures from the text file in the
    > correct way since the numbers contain dots instea
    d of commas. Is there
    > a way to fix this in labVIEW, or do I have to change the files before
    > reading them in the program? Thanks beforehend!

  • PDF of a blueprint comes up as a whole image instead of individual lines.

    PDF of a blueprint comes up as a whole image instead of individual lines. I have tried tracing it and that does not pull out the individual lines also, stays a one image only. how do I get just the individual lines?

    Several pdfs worked perfectly during my testing before going this route.  it wasn't until later that I found some files have this issue.  I can not find what the difference is between files that work and files that don't.  Ones that work come up as individual lines right away, ones that don't are one solid image.
    As Jacob mentioned in post #7, the file in question is a scanned (raster) image of an old drawing which may not even exist in vectors ('individual lines,' as it were) anymore, if it ever had. You can't make assumptions based on the fact that a file is in PDF format. A PDF can contain all raster image data, all vector data, and/or a mix of both.
    What is the difference between vector and raster graphics?

  • Getting # instead of new line - in smartform

    Hello,
    I am displaying a PDF in popup window, in which I am getting '#' instead of enter (Keyboard enter i.e. new line).
    Details -
    I have some text boxes, in which I can put the comments where user can press the enter on keyboard (new line character). When I look that comment on browser, I can see the enter pressed i.e. text is displayed on next line.
    But when I open a smartform, it shows me '#' instead on new line. FYI - If I look in infotype value, there also it shows '#', but I am able to get new line in browser (it doesn't show '#' in browser i.e. it works fine in browser).
    Only issue is with PDF or smartform.
    Thanks & Regards,
    Bhushan

    Hi BhuShaan,
    I understood your problem.
    I faced similar issue in smartforms while printing Longtext text with #(enter). I found a solution for the same.
    I got Text with # into ET_LONGTEXT Internal table. I have done below code
    data : ET_LONGTEXT     TYPE TABLE OF     BBP_PDS_LONGTEXT,
              ES_LONGTEXT     TYPE     BBP_PDS_LONGTEXT,
              ET_TDLINE     TYPE TABLE OF     TDLINE,
              ET_TDLINEF     TYPE TABLE OF     TDLINE.
    LOOP AT ET_LONGTEXT INTO ES_LONGTEXT.
      SPLIT ES_LONGTEXT-TDLINE AT cl_abap_char_utilities=>newline INTO TABLE ET_TDLINE .
      APPEND LINES OF ET_TDLINE TO ET_TDLINEF .
    ENDLOOP.
    You can try above logic. Good Luck.

  • Mouse wheel scrolling by page instead of 3 lines

    When I scroll my mouse wheel down or up, it goes by page instead of 3 lines (as set in Win7). This is happening only in Nightly 39.0a1 (2015-02-24), and I can't find where to change the setting, and frankly don't know how it got changed in the first place. Every other application does the 3 lines like they're supposed to. I was just scrolling thru my email and BOOM it started going by page. I've rebooted and tried holding every combination of CTRL/ALT/SHIFT and scrolling thinking that might help. Any ideas?

    hi greystoker, nightly is an unstable development branch where things are bound to break or go wrong every now and then.
    what you're describing sounds like [https://bugzilla.mozilla.org/show_bug.cgi?id=1136177 bug #1136177] which will be addressed in one of the next updates.

  • Gray dot instead of artworf

    hi!
    excuse me, i have a problem:
    i have some artworks in some songs, i can see them on the iTunes, but when i eject the iPod, it only shows a gray dot instead of the art, does anyone know why is this? please, help!
    iPod Video 60 Gb.   Windows XP Pro  

    Hey jid,
    Same happens to me... Just not the gray dot. I can see my album art in iTunes but when I'm listening to my iPod alone, no album artwork shows up at all.
    See my post: http://discussions.apple.com/thread.jspa?threadID=527211&tstart=0
    HELP anyone!
    ~annmarie~

  • Use of BADI's instead of in-line modifications

    Hi!
    In using SAP packages, we do some customizations to cope with the requirements right? I was asked to do some modifications, and they asked me to use BADIs instead of in-line modification. Can we put evrything under BADIs? The changes were quite big and additonal data needs to be retrieved and processed which is not part of the standard code. Also, we do not have BADI's under the BSP right? Can somebody give me an idea on this?
    Thanks!

    The key to using a BADI is that SAP would have had to place a BADI definition in the correct location within the Application you want to modify.  Certainly not every single application has a BADI definition within it.  You need to study the particual application you need to modify to see if a BADI definition is present.
    If there is BADI, there is quite a bit of processing that can be done within the BADI.  Basicually you inherit from an SAP class for your BADI implementation.  You have the ability to add more methods to your class, so you can built quite a bit of logic there.
    Off the top of my head, I don't know if any of SAP's delivered BSP applications have BADI definitions within them.  There is nothing technically stopping an application class, controller, or model class from having a BADI definition.
    If you are on Netweaver 04S, you might also consider looking at the enhancement framework. This allows safe modifications to be made directly to certain enhancement points within standard SAP applications.

  • In making .ard file what command line argument

    In making .ard file what command line argument  must be kept

    Taken form SAP Business One Development Environment Project.
    .bat file:
    "SAPAddOnRegDataGenFileFolder\AddOnRegDataGen.exe" "YourAddOnInstallXMLFolder\YourAddOnInstall.xml" "1.1" "YourAddOnInstallFolder\YourAddOnInstall.exe" "YourAddOnInstallFolder\YourAddOnInstall.exe" "YourAddOnFolder\YourAddOn.exe"
    .xml file:
    <AddOnInfo partnernmsp="YOU" contdata="Your Name" addonname="YOUR ADD-ON" addongroup="M" esttime="60" instparams="" uncmdarg="/x" partnername="YOU" unesttime="30" />
    Hope it helps.
    D.

  • When typing an email, when I go to next line, it skips two lines instead of one line. How do I correct it?

    I was typing an email and when I would go to the next line, it will skip two lines instead of one line. How do I correct the problem?

    I am not sure I understand the problem. Could you include a screenshot of it right after it happens?
    If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

Maybe you are looking for

  • Syntax higlighting (php inside html docs)

    Hi. Instead of .php I use .html to parse my php files. But DW shows the syntax highlighting of html even between <?php ?>. This is pretty uncomfortable when writing php. Is there a way I can render the syntax correctly? Perhabs there is an extension

  • Error installing CS5 updates; Some updates not showing up.

    When I select a photo in lightroom 5 and opt to edit it in photoshop, I get a notification that says "This version of Lightroom may require the Photoshop Camera Raw plug-in version 8.3 for full compatibility. Pleas update the Camera Raw plug-in using

  • How to do transports by useing Workcenter?

    Hi All, I am new to workcenter,how to  Schedule transport of ABAP obects from one system to anotherby useing workcenter? Can any one tell me step-by-step process. Regards, Swaroop

  • HT201184 Why can't I update my MacBook with the latest iTunes application?

    I purchased a MacBook in 2009. I tried connecting my new iPhone in order to Sync with iTunes, but I'm prompted to update my iTunes on the Apple website. When I do the update, I receive a message that my computer doesn't accept the update. What could

  • Subtotal text in ALV using OO ALV

    HI All, How to display subtotal text in ALV using OO ALV? My output of ALV should be as follows COL1    COL2   COL3 ABC      900       M1 PQR      100       M1 M1 Subtotal 1000 XYZ      2100    M2     M2 Subtotal 2100 I could put the subtotal, but co