Problems with line weight below 1pt

In Illustrator CS6, when I draw a horizontal line, either with the pen tool or the line tool, the line weight cannot be set below 1pt.  If I draw the line at an angle, I can set the line weight to be smaller than 1pt.  If I change the position of this line from diagonal to horizontal, then the line weight snaps back to 1pt.  Does anyone have any idea why this happening or how to fix it? Thank you!

Look for align to pixel grid
Illustrator: Problems with Align to pixel grid

Similar Messages

  • Problem with lines in Flash!!!

    Hello, I am currently using flash cs5.5. I am not having any software malfunctions or anything like that, I am just having a prolem with lines. When drawing with the pen, (or even pencil tool), is there anyway to make the lines you draw one solid line when you're done? For example, if tracing with the pen tool, each time you put an anchor, it creates a different line, which is fine while you're drawing it. I'm wondering is there anyway to select a certain amount of lines and make them one solid line? Let's say I am drawing an ear with the pen tool; by the time i am done drawing it, it is made up of 3 seperate lines. I did not know if there was anyway to select those three lines and make them one solid line? I know that I can double-click, but I just want to select the ear, not the entire head, (which is what happened when I double-click).
    Hopefully I got my question across, I'm not really sure how to describe it. Any help is greatly appreciated. Thank you so much!
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    Also too, on a 100% different note, I am also running into a different problem with lines. When drawing with the pencil tool, everytime I trace something with curves or bumps, by the time I let off the tablet, (this is not a tablet problem), the line with be in 100 different segments, even though I drew the line with one solid motion. It seems to do it more when I am working within a symbol. I do not know if there is a fix for this or not, but again, any help is greatly appreciated.
    Please do not get confused, both of these problems are 100% different from each other. The first is just something I am wondering if it exists. The second is more of a malfunction/glitch with the progam. Thanks again!

    Not sure if I understood you completely but let me suggest you a couple of things.
    1. Try drawing in Object mode. (available lower down in the tools panel. shortcut - J)
    The entire shape you draw now without releasing your mouse button will be treated as one shape object. These can be selected independently, broken apart (Ctrl + B) and even combined (Modify Menu -> Combine Objects -> Union). You can perform all the normal shape editing tasks as well on shape objects directly.
    2. For Pencil/brush tools, you can set the curve smoothness for your tools from the Properties panel -> Smoothness option.
    If you already have a line or curve drawn on Stage with too much of segmentation, you can select it then goto bottom of the Tools panel and click on Smooth button multiple times till you get the desired smoothness.,
    Hope this helps! Let me know in case of any doubts.
    -Nipun

  • HT4009 Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I wan

    Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I want you to help me everyways to refound my monet back.Could you?

    Contact iTunes Store Support.

  • Problem with line items print in Script MAIN window.

    Dear Friends,
    I am facing a problem with display the line items in main window.
    Here i have created my form with 2 pages,
    in first page i have created header window(my header information is full length of page), in second page i have created 2 windows, one for MAIN window and second for FOOTER window,
    i am having the Footer information about to off the page.
    and in my main window total 3 line items are coming, if i am having 3 line items then it is displaying properly (first 3 line items then immediately footer information on same page) but if am having more then 3 line items say four, then in my second page first it is printing 3 line items then it is switching into another page. After that footer is coming but. in previous page after printing 3 line items the remaining page is empty..
    my client want me to remove that place also. he wants to display continue..
    i think so u people r understand what is my problem...pls advice me what i want to do to solve this problem.
    Thanks
    Sridhar.

    Hi Sridher,
    If you want to display the footer information only on the last page why dont you use a table to display your details and place the footer details in the table footer instead of a seperate footer window.
    Regards,
    Vidya.

  • Problems with line numbers (building via ant).

    We use ant for our builds and are having a problem with getting line numbers into call stacks. When running on linux we do not get the lines for our projects (not all projects have debug option), just (Unknown Source), however we do see line numbers for the tib jars. Eclipse is fine, we can see all line numbers as appropriate.
    I have tried "lines", "lines,source" and "lines,var,source" - all build a different sized jar which suggest something is getting added. However as we see line nums for tib it suggests it's some strange java runtime option. We're using sunjdk 1.5.10 and also jrockit.
    Any ideas/answers most appreciated.
    Many thanks, Declan
    Ant task
    <target name="compile" depends="init">
         <javac target="1.5" destdir="${classes}" debug="on" debuglevel="lines,source">
              <src path="${src}"/>               
              <classpath refid="default.classpath"/>
         </javac>     
         <javac target="1.5" destdir="${classes-test}" debug="on" debuglevel="lines,source">
              <src path="${testsrc}"/>
              <classpath refid="default.classpath"/>
              <classpath location="${classes}"/>
         </javac>
    </target>
    Example output
    java.lang.IllegalArgumentException: Field data is null
    at com.tibco.tibrv.TibrvMsg._addImpl(TibrvMsg.java:1503)
    at com.tibco.tibrv.TibrvMsg.add(TibrvMsg.java:1020)
    at com.lehman.fid.jdt.channel.tibrv.TibrvMessage.putObject(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.publishDepth(Unknown Source)
    Cmd line
    VM_OPTS="-Dlogfile=../../log/CmdOrderBook.log"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.authenticate=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.password=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.ssl=false"
    PARAMS="-springcfg orderbook-context.xml -instancename CmdOrderBook"
    exec ${JAVA_HOME}/bin/java -DappInstance=CmdOrderBook -server -Xmx500M -Xms250M -Xincgc ${VM_OPTS} com.lehman.cmd.etrading.orderbook.CommoditiesOrderBook ${PARAMS} >> ../../log/Cm
    dOrderBook.out 2>&1

    We use ant for our builds and are having a problem with getting line numbers into call stacks. When running on linux we do not get the lines for our projects (not all projects have debug option), just (Unknown Source), however we do see line numbers for the tib jars. Eclipse is fine, we can see all line numbers as appropriate.
    I have tried "lines", "lines,source" and "lines,var,source" - all build a different sized jar which suggest something is getting added. However as we see line nums for tib it suggests it's some strange java runtime option. We're using sunjdk 1.5.10 and also jrockit.
    Any ideas/answers most appreciated.
    Many thanks, Declan
    Ant task
    <target name="compile" depends="init">
         <javac target="1.5" destdir="${classes}" debug="on" debuglevel="lines,source">
              <src path="${src}"/>               
              <classpath refid="default.classpath"/>
         </javac>     
         <javac target="1.5" destdir="${classes-test}" debug="on" debuglevel="lines,source">
              <src path="${testsrc}"/>
              <classpath refid="default.classpath"/>
              <classpath location="${classes}"/>
         </javac>
    </target>
    Example output
    java.lang.IllegalArgumentException: Field data is null
    at com.tibco.tibrv.TibrvMsg._addImpl(TibrvMsg.java:1503)
    at com.tibco.tibrv.TibrvMsg.add(TibrvMsg.java:1020)
    at com.lehman.fid.jdt.channel.tibrv.TibrvMessage.putObject(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.publishDepth(Unknown Source)
    Cmd line
    VM_OPTS="-Dlogfile=../../log/CmdOrderBook.log"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.authenticate=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.password=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.ssl=false"
    PARAMS="-springcfg orderbook-context.xml -instancename CmdOrderBook"
    exec ${JAVA_HOME}/bin/java -DappInstance=CmdOrderBook -server -Xmx500M -Xms250M -Xincgc ${VM_OPTS} com.lehman.cmd.etrading.orderbook.CommoditiesOrderBook ${PARAMS} >> ../../log/Cm
    dOrderBook.out 2>&1

  • Having problem with extra space below footer (sticky footer already checked)

    Hi there, im having this problem after updated my adobe muse cc. For some reason there is extra space below the footer.
    It looks fine when i try to view them offline, but when I upload them, the extra space appears. Here's the url for both of the website with extra space below
    1. http://unionvisual.web.id/home-page.html
    2. PT-Smas

    Hi there
    Thx for your reply, is here i upload my screenshot
    and here

  • Problems with line chart rendering

    Hi.
    I have some problems with a line chart with 2 series.
    I have the folowing series:
    SELECT null link, t.column_value eticheta, EVM_REPORT.ACTUAL_COST2(:P37_PROJECTID, t.column_value) valoare
    FROM TABLE(utils.table_for_iteration(
    to_date('2007-05-20', 'yyyy-mm-dd'), sysdate)) t
    SELECT null link, t.column_value eticheta, 7 valoare
    FROM TABLE(utils.table_for_iteration(
    to_date('2007-05-20', 'yyyy-mm-dd'), sysdate)) t
    function table_for_iteration(param_start in date,param_end in date) return DATE_ARRAY PIPELINED AS
    BEGIN
    FOR i IN 0 .. (param_end - param_start)
    LOOP
    PIPE ROW(param_start + i);
    END LOOP;
    RETURN;
    END table_for_iteration;
    FUNCTION actual_cost2(in_project_id in number, end_date IN DATE) RETURN number AS
    begin
    return 2;
    end actual_cost2;
    The chart does not display (at all). If i replace EVM_REPORT.ACTUAL_COST2(:P37_PROJECTID, t.column_value) with some value, it displays.
    Any ideea ?

    Hi,
    Do you mean point the partial trigger to the surrounding container? I have tried that but it makes no difference. I am almost certain that the problem is associated with the forEach component as if I have exactly the same structure but without the forEach then the ppr works fine.
    Thanks for your help on this,
    Dave

  • Problems with "Line-In sounds" after rebooting..

    Hi,
     I have some problems with my TV card. When I press reset button or switch on my PC and wait, about 3-5 sec. ahead of enter to Windows XP SP1, I can hear PFFFFFFFFFF.... from my speakers. I hear it until I activate MSI radio or MSIPVS (programs using LINE IN input).....then is "Line IN sound" is OK. If I close all MSI applications..... Line IN is Silent - That's right!!
    Please help me, what can I do ....
    I tried old and newest drivers....but still PFFFFFF ....agrrrrhhh !!!!
    I have 2 sound cards (and 1 on board) and problem is still identical.

    The problem is related to the Crossbar driver
    There was a solution posted befrore in this forum and that was to change the crossbar driver from MSI with one of from a leadtec xp2000
    check https://forum-en.msi.com/index.php?threadid=40100&sid=&hilight=crossbar+driver

  • Problems with line items

    Hi guys,
    I've some problems with the implementation of the solution described in HowTo guide "HowTo line items in IP..." .
    When I've activated the char. relationship as desribed like in the HowTo paper I get an error message, when I'm deactivating the char. relationship everything is fine.
    Now my question: do I've to implement the coding for the char. derivation in every method or just in the derive-method?
    Here is my coding...
    FIELD-SYMBOLS: <l_chavl> TYPE ANY.
    fill ID
    ASSIGN COMPONENT 'ZA_000671' OF STRUCTURE c_s_chas
    TO <l_chavl>.
    CALL FUNCTION 'GUID_CREATE'
    IMPORTING
    ev_guid_32 = <l_chavl>.
    fill user
    ASSIGN COMPONENT 'ZA_000672' OF STRUCTURE c_s_chas
    TO <l_chavl>.
    <l_chavl> = sy-uname.
    fill date
    ASSIGN COMPONENT '0DATE' OF STRUCTURE c_s_chas
    TO <l_chavl>.
    <l_chavl> = sy-datlo.
    fill time
    ASSIGN COMPONENT '0TIME' OF STRUCTURE c_s_chas
    TO <l_chavl>.
    get time field <l_chavl>.
    It qould be great, if somebody can tell, what I'm doing wrong here.
    Cheers+kind regards,
    Clemens

    Hi,
    For user you have to write complete technical name of the user InfoObject. Say if it is ZUSERID then you should write:
    ASSIGN COMPONENT '/BIC/ZUSERID' OF STRUCTURE c_s_chas TO <l_chavl>.
    <l_chavl> = sy-uname.
    For standard InfoObjects like 0DATE you can simply write
    ASSIGN COMPONENT '0DATE' OF STRUCTURE c_s_chas TO <l_chavl>.
    <l_chavl> = sy-datlo.
    Regards,
    Deepti

  • Problems with line spacing?

    Hey all
    I have some problems with my OS X behavior. This morning, when I restarted the computer line spacings in OS X were screwed. The text is strange, in some programs, but not all. Here are two screen shots to show the problem:
    The menu bar acting strangely (charged is like superscript):
    iTunes have problems too, the line spacing is very small. This happens in my browsers too (Firefox, OmniWeb) but not on every homepage, but for example on Facebook and Google:
    Anyone who knows how to solve the problem?

    Okay, I solved the last problem. By completely removing the false Lucia Grande font iTunes is back to normal. It seems like I, by mistake, had a Lucia Grande font with wrong line spacing, which was overruling the system font.
    Sorry for the inconvenience ...

  • CS5 Bug? Problems with lines...

    Well it was welcomed that you could "Command-click" to select objects behind others (finally!) in Illustrator CS5... HOWEVER...
    1) once selected, you still have to drag by it's path, or find yourself selecting the top-most object again. Yes I realize that you can entire into "Isolation Mode"... but still "clunky".
    2) Resizing a line's width while holding down the "alt" key, shows a guide line while pulling it out to align to say another object's border, but when released, the line is about half the width that you re-sized it to, not matching the preview guides when pulling it out.
    3) Time-honored "bug" in Illustrator: why can you still not select a line by it's appearance (by clicking anywhere on it's "preview" width), rather than the exact center of the (vector) line itself?
    4) Why does "command-click" not work with lines on top of each other, say with different widths? Dragging a selection always selects both. Yes, I guess the new keyboard short-cut is the best way... but come on!
    Not related to lines, but still a nasty "bug" (feature?): when copying a graphic from Illustrator that has a clipping mask, when pasted into Photoshop, it recognizes everything that is supposed to be masked, making it not fit the "true" bounds of the new document when using clipboard? Yes, Flattening Transparency works... but why the extra step?
    Considering... and here it comes... that FreeHand has the ability to do all of the above correctly since I believe version 7. or was it 5?...3?... possibly 1? I can't remember because it's been 20 years! Since Adobe ownes FH, so why not see how Macromedia and Aldus before them, coded those "features"... AND USE IT!
    To end on a positive note though, the new Line Width Tool is simply fantastic!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}The fact that it holds a monopoly....
    Adobe does not "hold a monopoly." It merely (probably--I'm not a market analyst, either) has a market share (or mind share) majority in this product category. Do you blame Adobe for that, or those who continually buy Illustrator and have next to zero experience with other apps?
    If NGK is the only manufacturer of the particular spark plug needed for my Kawasaki lawn mower engine, that does not make NGK a spark plug monopoly.
    If I choose to own a BMW 1200GS motorcycle, I don't consider myself a victimized underdog minority because many more Honda XL650Rs are sold.
    If Honda buys Montessa, one of the longest-lived and most highly-respected names in Observed Trials bikes, and then discontinues its 2-stroke models and replaces them with a single 4-stroke model of Honda's own design, I can't legitimately call that a monopoly either. I can't whine that evil Honda effects a "monopoly" just because "I've always ridden Montessas." I can have the selection I desire if I ride a different "platform" (Sherco, Gas Gas, Beta...).
    If I insist on using a Macintosh computer, I can no more accuse Adobe of "monopoly" and go about moaning that "there is no competition"--any more than I can accuse Apple of monopoly because an iTouch app doesn't run on my Blackberry.
    The fact that Macromedia chose to sell to Adobe, and that Adobe chose to buy...
    The fact that there are more applications available on a 94% market share platform than on a 6% market share platform...
    ...is just business. It's neither criminal nor immoral. Again, it's market-driven. Blame the buyers.
    If you consider yourself victimized because you use only MacOS, then who's victimizing you other than yourself? If you choose to tolerate the relative dearth of software offerings in this category because you perceive MacOS to have some outweighing other advantage, then you ought to hold your head high as if you were a BMW rider. That's not a monopoly.
    As for me, I don't live in the OS; I live in the applications--and for all intents and purposes the apps work the same on either platform. I just have alot more of them on Windows. And I like to keep up with the current functionality of more than one drawing program and to actually know what I'm talking about when I compare them--which I couldn't do if I limited myself to MacOS. But if I did, I still wouldn't be a victim of monopoly.
    Monopoly is a very ugly word implying illicit business practices. Adobe is no more guilty of monopolistic practices for discontinuing FH than Apple was when it broke backward-compatibility of the iPod with the Bose speaker system I bought for it. But it sure affected my later buying decisions.
    By discontinuing FH and failing to replace the long-bearded Illustrator with a new, innovative, and serious-business 2D vector drawing app, Adobe effectively set 2D Bezier drawing back by decades. But that's not a monopoly either. And the only thing that will correct it is customer-driven market demand.
    JET

  • Problem with line clipping.

    Hi,
    In my applications there are various shapes and there is a Line Handle
    associated with every shape. That line handle's initial point is center of
    the shape and the end point is outside the shape.
    I am using g2d.clip() method to clip the line inside the shape so that
    Line shouldn't be visible from the center but from surface of the shape.
    My problem is that the line sometimes isn't visible ,specially if center point's x or y is same as line end points x or y.
    This is because of are clipping .
    Can anybody tell me how to negate this problem?
    I am posting small program to demonstrate the issue;
    import java.awt.BasicStroke;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.Shape;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.Area;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Line2D;
    import java.awt.geom.Point2D;
    import java.util.HashMap;
    import java.util.Map;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class EllipseDraw
    extends JPanel
    implements MouseMotionListener
         Line2D line = new Line2D.Double(new Point2D.Double(75, 75), new Point2D.Double(150, 60));
         Ellipse2D ellipse = new Ellipse2D.Double(50, 50, 50, 50);
         EllipseDraw()
              this.addMouseMotionListener(this);
         public static void main(String[] args)
              EllipseDraw ellipseDraw = new EllipseDraw();
              ellipseDraw.setBorder(BorderFactory.createRaisedBevelBorder());
              JFrame frame = new JFrame();
              frame.getContentPane().add(ellipseDraw);
              frame.setSize(300, 300);
              frame.setVisible(true);
         public void paintComponent(Graphics g)
              super.paintComponent(g);
              Graphics2D g2d = (Graphics2D)g;
              g2d.setStroke(new BasicStroke(2));
              Map renderHints = new HashMap();
              renderHints.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
              renderHints.put(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
              g2d.setRenderingHints(renderHints);
              g2d.setPaint(Color.red);
              Area area = null;
              g2d.draw(ellipse);
              Shape currentClip = g2d.getClip();
              if (!ellipse.contains(line.getP2()))
                   area = new Area(line.getBounds2D());
                   area.subtract(new Area(ellipse));
                   g2d.clip(area);
                   g2d.draw(line);
                   g2d.setClip(currentClip);
              if (area != null)
                   g2d.draw(area);
         public void mouseDragged(MouseEvent e)
         public void mouseMoved(MouseEvent e)
              line.setLine(line.getP1(), e.getPoint());
              this.invalidate();
              this.repaint();
    }

    I solved the problem by growing the area .
    if (!ellipse.contains(line.getP2()))
                   Rectangle rect = line.getBounds();
                   rect.grow(10, 10);
                   area = new Area(rect);
                   area.subtract(new Area(ellipse));
                   g2d.clip(area);
                   g2d.draw(line);
                   g2d.setClip(currentClip);
              }

  • Problem with Line Item display of G/L account

    Hi,
    I am struggling with a typical problem that I have two company codes in two different countries.  I have created a tax account with Open Item management and Line Item display in both the company codes.
    When I am trying to post vendor invoices, taxes are being posted on line item wise in one company code but not doing so in other company code eventhough the attributes of the G/L account are same.
    G/L accounts, tax condition types and account keys are same in both the cases.
    Can any body give me an idea to fix the problem.
    thanks in advance,
    Mallik

    HI,
    check the condition types you've defined for the both of the countries
    sprofin accting-f/a gl sett-tax on sales/pur -basic settings-check cal procd--define cond types
    there is a check box named item condition see whether it is ticked for the another company's condn type.
    because due to this only it takes the condn item wise.
    reward pts if it helps.
    Regards

  • Problems with Line input

    Maybe somebody can help...
    I'm sending audio signal to the input of my macbook pro...I see the input in the sound section of my system preferences..but hear nothing from headphones or speakers...nothing is muted and all off the input & output adjustments are at about 75%.
    Speakers & headphones work fine when playing audio content from within the macbook..
    I did this all the time with my old g4...no problem.....what am I missing ?
    Thanks !

    i'm having exactly the same problem.
    i can see the input level on the input section of system preferences, but cannot hear it.
    furthermore: i'm also trying to record said input in Logic Pro 8, but anytime i monitor "input 1-2" i get horrible feedback from the internal speaker, even though i've changed the input source to line in.

  • Problems with Line Tool Photoshop CS4

    I have just upgraded to CS4 running on a new MacBook Pro 10.6.3. I've used Photoshop 7 extensively and feel quite able to get around the CS4 version. The problem I have is in creating a line in Photoshop - the line colour will not fix or change other than black on white background, or white on a black background. I can't seem to change it what ever I do? Is there a bug or incompatibility with the new operating system of my MAC? 

    Is the Line Tool set to Shape Layer, Paths or Fill Pixels (in the Options Bar)?

Maybe you are looking for

  • MarshalException: Missing end tag for body or Envelop

    Hi, I am new at this, pls advise. I have been trying to code a 'hello world' that returns a string, as below. //================== package simple; public class HelloWorld{ public String sayHello() { return "hello"; //=================== and my buil.x

  • TS2446 Re: "Your apple ID has been disabled"

    I can login to my account with my ID & password, but i'm having a problem to buy a application or update when ever i try. i did change my password too. following messages may appear, " your apple ID has been disabled, contact iTune support, at http:/

  • Cisco ASA 5520 (asa 8.2) hairpinning

    Hi All, We have a ASA 5520 (redundant) in our network which we are using for different customers. For every new customer we create a new VLAN and place their servers in this VLAN. On the ASA we create a new subinterface for every customer which is co

  • Can I use AdvancedDatagrid in an opensource project?

    I have a student Flex Builder education license. Can I use AdvancedDatagrid in an opensource project?

  • Loading Photo elements 11 on a new computer

    I wish to load my software on to a new computer. I have my redemption code, but I am unable to get a serial due to the information that originally registered with.  I forget my information