Dragging to Scale and Maintain Uniform Line Weight?

Is there any way to scale an object by dragging it and maintain a uniform line weight?
Thanks.

A Scale Strokes and Effects command is provided, but hidden away in two locations: Preferences and the flyout menu of the Transform Palette.
JET

Similar Messages

  • Line weight/thickness update

    Hey all,
    The line tool is not functionning too intuitively for me. It creates a line in a new layer - so far, so good - named "Shape n" (where n is its number). Why not "Line n" ? And then the line weight or thickness won't update when I go to the option bar, having the "path selection" tool on. I can change the colors though. Care to explain, if you've been there ?
    Thanks in advance for the support.
    Charles

    Wow, I knew I was mostly new to this, but I didn't think it was this bad. I say this because there's not a word in two I know the meaning of in your answer ^^
    I do however have ideas about this :
    1) So the line tool essentially creates a fully painted layer, but then masks it with a vector mask, and that mask has a hard time updating itself ?
    2) Stroke feature ? I'll look around for this one and see what this yields.
    3) Now, open or closed paths, what does that mean ? As in, the path loops on itself and surrounds a finite portion of the canvas' plane ? And at any rate, what's a subPathItem ?
    Thanks again for your concern.

  • I have a line drawing (black on white paper) i have scanned and need to make the white paper transparent, maintaining the line drawing, can i and then HOW can i do this in PS?

    i have a line drawing (black on white paper) i have scanned and need to make the white paper transparent, maintaining the line drawing, can i and then HOW can i do this in PS? this is for my business logo. ive used it for years but with a solid background. id like to have it just be the drawing over my photos with a transparent background.

    First let me apologize for posting a reply that was only suitable for advanced users.  Photoshop is broad and powerful therefore has a huge learning curve.  In fact I would state no one knows and uses all of Photoshop.  When we first get Photoshop it intimidate us and we're very uncomfortable using it.  Many thing are not intuitive there in much learning involved.  After some time we begin to know something and we are able to do some thing.  Learning become rapid and we start playing in Photoshop.  It is very important to play with Photoshop.  Playing with Photoshop and asking for help with in forums like this IMO is the best way to learn. 
    Photoshop Power lies in layers, selection and automation.  However it takes knowledge to use photoshop well so most powerful tool you have ins Photoshop is the gray matter between your ears.  Most at one time or another want to watermark or put a logo on their image.  So its best to automate this process. All run into a problem in the process. "Size"  We find our assets vary in size and aspect ratios. Landscape, Portraits, Panoramas and others. This complicates automation.  Vector graphics works best when size vary greatly.  If you can not work out how to create a vector solution like a custom shape.  Create your Logo and watermark large thing scale down better the up. Text scale well for text uses vectors graphics however if you rasterize text it will not scale well.
    I do not type or do English well so let me do some screen captures.  I can not stress enough how important Black, White, Grays and Blending is when it come to image processing.  Become friends with Multiply, Screen, Overlay and Luminosity blending.....
    However when there is a white or black background though you can blend them you can not add a style like a drop shadow, emboss or make it invisible setting fill to 0 so only the style is visible.  When there is contrast between the logo and background it is easy to separate the two. To select the background and delet it to have the logo with a transparent background.  Many tools can be used to create the selection hee I use my action kill white.
    Vector Shape would work better for scaling However it would be best to create the logo from scratch in a vector program like illustrator but I never had the resources to justify the Creative suite. I only had Photoshop.  Recently Adobe gave me and other a year subscription to the creative suite for our participation here.  I still have not installed anything but Photoshop,  A while back I found a program that can create vector patf for black and white art work.  It will not be as good as using something like illustrator. However vector paths can be edited in Photoshop and cleaned up some. Here is the PSD it 13MB because od the gradient http://www.mouseprints.net/old/dpr/AmPm24-7.psd

  • Drag and dynamically add line segments?

    Dear all:
    I draw a continuous line segments by mouse, which starts by a left
    mouse click. Then if user click on another location on the screen, it
    will continuously add a line segment to the screen. This process ends
    with a right mouse click. In this case, all the points are shown
    in a JPanel and stored in a Vector.
    My question is:
    after the line is shown on the screen, how can I use mouse to drag
    any points on these line segments (it does not necessary need to be
    the line-segment connecting points), such that the new points will be
    added to the line, and original line segments' shape changed
    accordingly during the mouse drag.
    Example:
    Step 1: A line (containing line segments], which is drawn by mouse on the Panel:
        * [left click]
          *  [left click]
          |
          |
          *  [left click]
           * [right click]
    Step 2: Drag any points in the line, this does not necessary to be
    original points that define the line-segments, such as the + in the
    following.
          |
          + [here left click a point on the line]
          |
    Step 3: If I drag the + in above figure to left, it will become:
        +  [right click, the new point and new line segment is added]
    When the mouse released, the new shape is shown on the panel.How to do the dynamically drag?
    Thanks in advance!

    Try this
    regards
    Stas
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.ArrayList;
    public class Test {
        JScrollPane scroll;
        JPanel p=new JPanel(new BorderLayout());
        Robot robot=new Robot();
        public Test()  throws Exception {
            final JFrame frame=new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add(p);
            frame.getContentPane().add(new Desktop());
            frame.setBounds(0,0,350,350);
            frame.show();
        public static void main(String[] args) throws Exception {
            new Test();
    class Desktop extends JPanel implements MouseListener, MouseMotionListener{
        ArrayList polyline=new ArrayList();
        Point startPoint;
        boolean dragged=false;
        int lineIndex=-1;
        public Desktop() {
            super();
            addMouseListener(this);
            addMouseMotionListener(this);
            polyline.add(new Line2D.Double(10,10,150,150));
            polyline.add(new Line2D.Double(150,150,10,300));
        public void mouseDragged(MouseEvent e) {
        public void mouseMoved(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
        public void mousePressed(MouseEvent e) {
            Point point=e.getPoint();
            Rectangle2D pointRect=new Rectangle(point.x-3,point.y-3,7,7);
            for (int i=0; i<polyline.size(); i++) {
                Line2D line=(Line2D)polyline.get(i);
                if (line.intersects(pointRect)) {
                    startPoint=point;
                    lineIndex=i;
                    return;
            lineIndex=-1;
        public void mouseReleased(MouseEvent e) {
            if (lineIndex>=0) {
                Point2D endPoint=e.getPoint();
                Line2D line=(Line2D)polyline.get(lineIndex);
                Line2D firstPart=new Line2D.Double(line.getP1(),endPoint);
                Line2D secondPart=new Line2D.Double(endPoint,line.getP2());
                polyline.remove(lineIndex);
                polyline.add(secondPart);
                polyline.add(firstPart);
                this.repaint();
        public void mouseEntered(MouseEvent e) {
        public void mouseExited(MouseEvent e) {
        public void paint(Graphics g) {
            super.paint(g);
            g.setColor(Color.red);
            for (int i=0; i<polyline.size(); i++) {
                Line2D line=(Line2D)polyline.get(i);
                ((Graphics2D)g).draw(line);

  • What is pricing scale and where do we maintain pricing scale?

    Dear Gurus,
    what is pricing scale and where do we maintain pricing scale?
    Thanks..

    Hi Bidhu,
    Scales are used in pricing when there is different price at different quantity. Scaled prices are maintained like:
    From   1 pc - 100.00 EUR
    from  50 pc -  90.00 EUR
    from 100 pc -  80.00 EUR
    Now for qty 1 to 49, price would be taken as 100 EUR. where as for 50 to 99, it would be 90 EUR. Similarily price for any qty above 99 (mean >=100) price would be 80 EUR.
    You can use scales in any document where pricing can be maintained. SD and MM behave same as scales if functionlity of SD and MM also used that.
    If price date determination is done as the time of GR, GR qty will be used to determine the price scale. But if price date category is document, document qty (like PO qty) would be used to determine the correct price scale.
    Hope this helps you.
    Sanjeev

  • Drawing a curved line using the pen tool, dragging the text cursor over the line but will only give me a small area to write in, in-between a circle and a circle with a cross in?

    Drawing a curved line using the pen tool, dragging the text cursor over the line but will only give me a small area to write in, in-between a circle and a circle with a cross in?

    If you change your tool to the "Direct Selection Tool" (A) then you should be able to adjust the area for you to type in...

  • Transfered drawings to photoshop and lines dont show or dont have the correct line weight

    Hi everyone,
    I did some drawings using autocad, then transfer them to illustrator for organization purposes. Now I need to transfer them to photoshop to do renders on them, but when I do the line weight and details in photoshop don't look the same. It dims down the color, looks way lighter, and some of the details of my drawings don't show. I thought maybe was a computer or program issue, but when I printed them I could see the difference also from illustrator than from Photoshop
    Hope anyone can help
    Michelle C.
    photoshopillustrator

    Hi,
    I do, I zoom in and I see my lines, but I don't think that's the problem, because when I print them they look lighter compared to the file that I print from illustrator.
    thanks,
    Michelle C.

  • How do you drag-scale and copy at the same time?

    I just want to drag-scale and copy at the same time like in previous versions of illustrator by holding the command key while dragging. Can someone help me find out how to do this with CC? I don't have time to re-learn basic things over again. What was wrong with it the way it was?

    I guess you have to have the scale tool selected in the tool bar now in order to "drag-scale" and copy at the same time. Before you could just do it no matter what tool was selected in the tool bar. I liked it the way it was.
    -Jo

  • Filling shapes and changing line weights will not show until export.

    When I draw a character, i cannot change line weight of fill shapes. When I do so it remains unchanged, however once I export everything is fine and okay.
    This image below is how it looks. Even though it is colored.
    Once I export I get this
    Can someone please help me?

    menu/view/outline
    or pres command+y

  • How do I set a PDF Export Preset to force a minimum line weight on output?

    How do I set a PDF Export Preset to force a minimum line weight on output?  I'm currently using one that came from a printer that works great - but I can't seem to find the option when creating one myself.  I have some placed Illustrator line art that is built with .25 line thickness and when I have it placed at 20% scale the lines are too thin to see in the PDF output.

    There is absolutely no way to force minimum line widths within InDesign itself, certainly not as part of the PDF export process!! And even one writes a script to go through every object within an InDesign document and both validate and fix line widths less than some particular threshold, such a script would be useless against placed artwork, the contents of which are not available for manual or programmatic inspection within InDesign.
    Note that one should be exceptionally careful in “fixing” hairlines, especially if you are placing vector artwork at very low magnification. It may actually be OK to let certain lines drop out. After a fixup on some content, you could end up with a messy mass of lines.
              - Dov

  • Export or Print different line weights (like in AutoCAD)

    Is there a way to Export / Print / Save As artwork with reduced line weights like you can in AutoCAD? i.e. Export a PDF and all line thickness is reduced by 50%
    I have a map project that I'm working on and I want to export different sections of the map at different scales (different zoom levels) which when you export a PDF, displays line thickess differently for each level of zoom. I'd like to have it setup similar to AutoCAD where I can create a window and now matter what level of zoom, the lines are exported at the same thickness (I'd use Artboards as export windows)
    Sorry if this is confusing!  Is there a Plug-In or another way to do this without physically changing the line weights?

    Do you want a PDF that displays different line weights depending on zoom level? Not possible. Or do you want to export a PDF with line weights different from the ones in your Illustrator file? Possible, even recordable as an action.
    Once the artwork is selected, go to Object > Transform > Scale. Scale to 50% and turn on Scale Strokes & Effects, then click OK. Repeat, this time with scaling set to 200% and turn off Scale Strokes & Effects. Save or Save a Copy, then undo twice.
    Here it is an an action: http://dl.dropbox.com/u/5005292/Set_1.aia

  • Line weight consistency

    Hello,
    I have created some line drawings (floor plans) in illustrator (CS5), that need to be dropped into several inDesign (CS5)
    Documents. They are fairly simple drawings with annotations for measurements etc..
    In the indesign doc there will be 1 or 2 plans on some pages and up to 4 on others
    Is it possible to keep the line weights and type (annotation) consistent bearing in mind that the plans will be resized
    to fit the respective areas in the ID document?
    I know you can do this in Ai if you uncheck the scale/effects box.
    Thanks in Advance

    No. InDesign will scale everything, effects, fills, strokes, text… the works. You could copy and paste the illustrations into InDesign, but I don’t recommend it. InDesign is just not as suitable for editing illustrations as Illustrator is.
    I would import the illustrations, position them, and scale them as needed. Near the end of production, when sizes have been approved, click on each drawing with the direct select tool (white arrow) and note the scaling in the control panel. Edit the Illustrator file and scale according the the value in InDesign, then update.

  • Line Weight

    I open a PDF of a drawing.  I turn off line weights to be able to view it better.  I want to save it in that format to send to someone.  How do I do this?  Also, can I change the preferences of the program to automatically turn off line weight?

    The "fix" is in the transform panel. Click on the scale
    portion of the panel with anything on the paste board selected. You
    will then be able to turn on the function to scale strokes. Just
    click on the box to select that option and turn it off when you
    dont want strokes to scale.

  • Line weight changes when using Align to Pixel grid

    When I select Align to Pixel Grid in the Transform Panel, I see line weight changes occur. I try to change the line weight in the either the Stroke or Appearance panel and it will not change, no layers locked, any ideas how to change the line weight?

    Chouettecacahuete wrote:
    ... I noticed that the line increases from 0.5pt to 1pt mainly (although not always) on straight lines, anything with a bezier curve seems to remain as 0.5pt.
    Just try this, with snap to pixel grid on, create 10 pixel long straight horizontal 1pt line with the pen or line tool. You won't be able to change the stroke weight to other than whole numbers. But if you rotate the line with only 0.01 degrees by typing this for rotation in the Transform panel, then you can change the stroke weight to 1.25 for example. When creating artworks for for screen display always verify the result with View > Pixel Preview turned on.
    tonyharmer wrote:
    ...I only referred to Photoshop to illustrate the behaviour - vector tools aside, everything you do in Photoshop has to be whole pixels
    As I said, Photoshop doesn't have  snap to pixel grid feature like Illustrator. You can easily create fuzzy lines in Photoshop if you are not drawing them precisely in the middle of the pixels. To check what I'm talking about try this In Photoshop, create a new document with a very small pixel dimensions like 20 x 20 pixels and zoom to the maximum 3200% to see clearly the result. Fill the image with light gray color so you can see the pixels when View > Show Pixel grid is on. Then with black color try drawing a straight line with any tool that creates pixels like a hard brush or the line tool used in pixel mode, and try using constraints like holding Shift while dragging. You will see that unless you draw the lines exactly in the middle of the pixels it will be fuzzy and not clean. The only way to ensure not fuzzy lines in Photoshop is to turn  off the anti-aliasing. You do this by unchecking the anti-alias for tools that have this option and instead of burshes use the pencil tool (which is brush without anti-aliasing). And Illustrator works the same too if you turn off Anti-aliased Artwork in its general section of the preferences and view the result with View > Pixel Preview, you don't need to have the Align to Pixel Grid on, the aliased result will be the same like in Photoshop.

  • Freehand MX line weight issue?

    I am having a problem seeing the difference between say a 1pt line and a .5 line when viewing and creating an illustration at 100%. The line weights look identical. If I view or edit the illustration at say 200% the line weight difference is noticable. What is going on here?
    Thanks....

    Freehand is based on the Postscript imaging language which uses 72 points to an inch. Freehand was written when the prevailing computer display resolution was 72 pixels per inch (72ppi).
    Therefore, 1 point = 1 pixel.
    To display a stroke finer than 1 pixel, Freehands’ Preview mode can’t show a partial pixel, but it does show a lighter shade of gray.
    If you’re designing web images, don’t use strokes finer than 1 point (1 pixel) because they won’t display well in 72ppi raster images.
    When working with very fine strokes for print or other kinds of output, I find it easiest to work to scale. Make a custom scale in your page rulers such as 4 points = 1 point (400%).
    View > Page Rulers > Edit
    Please keep in mind that today’s computer displays have a higher pixel density than 72ppi so 100% view in Freehand won’t be actual size.
    Judy Arndt

Maybe you are looking for

  • How to extract large voice memos from iphone

    I need to extract a large (50 minutes) voice memo from an iPhone 4s using iOS 8.1.1 I'm using a MacBook Air 11-early 2014 with OS X Yosemite (10.10.1)

  • Installation of 9iAS 1.0.2.2 on HP-UX 11 64 bit

    Hello, anyone who has already done the installation on this platform. please guide me on the preinstallation tasks and requirements at the OS level. My Installation CDs do not contain the installation guide Thanks Yogeeraj

  • Macbook starts up but no picture

    I just replaced my macbook LED screen, and it powered up fine. but then when i went to go power it up again, it goes into sleep mode. any help?

  • Archive RETENTION Periods Configuration..

    Hi All, I am trying to do the Archiving for my XI system and I got configured my system in this way below. I just want to know my configuration is correct or not. I am not sure about the retention period given is correct or not. Configuration is not

  • TAO NT Naming Service failed to start

    HI, When trying to upgrade to 8.8 we get an error message when the TAO NT Naming Services tries to start. It says "The applicaton has failed to start because the application configuration is incorrect. " Reinstalling the SAP server services does not