How to make a straight line of points in a curve in CS6

In PSCS5 and earlier, I used to be able to make a straight line of points in a curve by placing 9 points on the straight line curve.  I did this by drawing a small straight line at the bottom of the curve using the pencil tool and then clicking the curve point icon.
I can't seem to do this with CS6.  Any thoughts?
Thanks,
Matthew Kraus

Did you not ask a similar question a while ago?
http://forums.adobe.com/message/4524084#4524084

Similar Messages

  • How to make the diagonal line in the swing table cell?

    Hi all,
    How to make the diagonal line in the swing table cell just like the link below?
    http://61.132.17.188/webber/table.gif

    One improvement.. To get a line that is neat, use a bit of Graphics2D
        public void paintComponent(java.awt.Graphics g)
            int w = getSize().width;
            int h = getSize().height;
            // draw a line between (0,0) and (w,h)  
            g.setColor(getForeground());
            if (strTop == null)
                strTop = "  ";
            if (strBottom == null)
                strBottom = "  ";
                java.awt.Graphics2D g2 = (java.awt.Graphics2D)g;
              g2.setRenderingHint(java.awt.RenderingHints.KEY_ANTIALIASING,java.awt.RenderingHints.VALUE_ANTIALIAS_ON);
              //g2.setStroke(new java.awt.BasicStroke(14.0f));
            g.drawLine(0, 0, w, h);
            //the following lines will draw the two strings,
            //one above the top of the line and the above below it.     
            g2.drawString(strTop, (w/2)+2, (h/2)-2);
            g2.drawString(strBottom, 2, (h / 2) + 2);
            //the x,y for drawString are only based on assumption.   //do necessary changes to suit ur needs.
        }Then create a TableCellRenderer and set it to the Table Header for ur table's 1st row.....
    Cheers

  • How to make the last line of the textarea visible all the time?

    Hello,
    I am making an online chat application in JSP and XHTML. The chat log and online users� names textareas are refreshed every 5 seconds. When it comes to many messages in the chat log textarea, the scrollbar appears. Then, every time the chat log textarea is refreshed, I need to move the scrollbar down to see the last line of the textarea.
    Are there any ideas how to make the last line of the textarea visible all the time without moving the scrollbar?
    Thanks in advance.
    Dan

    I put the below code on the page, but it didn't work.
    Are there any ideas? Thanks.
    <table border="0" cellspacing="1">
    <tr>
    <th>Chat Log</th>
    <th>Users now online</th>
    </tr>
    <tr>
    <td><textarea rows="20" cols="60" name = "messages" readonly = "readonly"><%= texts %></textarea></td>
    <td><textarea rows="20" cols="20" name = "names" readonly = "readonly"><%= names %></textarea></td>
    </tr>
    </table>
    <script type="text/javascript">
    <!--
    document.messages.scrollIntoView(false);
    //-->
    </script>

  • How to make content horizontal swipe in single standard frame in Indesign CS6?

    How to make content horizontal swipe in single standard frame in Indesign CS6?

    This sounds like a question for the DPS forum. We don't handle DPS questions here:
    Digital Publishing Suite

  • How to draw only straight line instead of angled one??

    Dear friends,
    I saw a very good code posted by guru here(I think is camickr),
    But I tried to change it and I hope to draw only straight line instead of angled one, can you help how to do it??
    Thanks so much.
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class DrawingArea extends JPanel
         Vector angledLines;
         Point startPoint = null;
         Point endPoint = null;
         Graphics g;
         public DrawingArea()
              angledLines = new Vector();
              setPreferredSize(new Dimension(500,500));
              MyMouseListener ml = new MyMouseListener();
              addMouseListener(ml);
              addMouseMotionListener(ml);
              setBackground(Color.white);
         public void paintComponent(Graphics g)
              // automatically called when repaint
              super.paintComponent(g);
              g.setColor(Color.black);
              AngledLine line;
              if (startPoint != null && endPoint != null)
                   // draw the current dragged line
                   g.drawLine(startPoint.x, startPoint.y, endPoint.x,endPoint.y);
              for (Enumeration e = angledLines.elements(); e.hasMoreElements();)
                   // draw all the angled lines
                   line = (AngledLine)e.nextElement();
                   g.drawPolyline(line.xPoints, line.yPoints, line.n);
         class MyMouseListener extends MouseInputAdapter
              public void mousePressed(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        startPoint = e.getPoint();
              public void mouseReleased(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        if (startPoint != null)
                             AngledLine line = new AngledLine(startPoint, e.getPoint(), true);
                             angledLines.add(line);
                             startPoint = null;
                             repaint();
              public void mouseDragged(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        if (startPoint != null)
                             endPoint = e.getPoint();
                             repaint();
              public void mouseClicked( MouseEvent e )
                   if (g == null)
                        g = getGraphics();
                   g.drawRect(10,10,20,20);
         class AngledLine
              // inner class for angled lines
              public int[] xPoints, yPoints;
              public int n = 3;
              public AngledLine(Point startPoint, Point endPoint, boolean left)
                   xPoints = new int[n];
                   yPoints = new int[n];
                   xPoints[0] = startPoint.x;
                   xPoints[2] = endPoint.x;
                   yPoints[0] = startPoint.y;
                   yPoints[2] = endPoint.y;
                   if (left)
                        xPoints[1] = startPoint.x;
                        yPoints[1] = endPoint.y;
                   else
                        xPoints[1] = endPoint.x;
                        yPoints[1] = startPoint.y;
         public static void main(String[] args)
              JFrame frame = new JFrame("Test angled lines");
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              DrawingArea d = new DrawingArea();
              frame.getContentPane().add( d );
              frame.pack();
              frame.setVisible(true);
    }

    Change the AngledLine class to store two points instead of 3 points (I would rename the class to be StraightLine). The code is much simpler because you just store the starting and ending points and you don't need to calculate the middle point.

  • How to make L-shaped lines?

    Hi all,
    as I'm rather new to Java I'm facing the follwing problem:
    I've managed somehow to draw some lines on a JPanel. Now I'd like to click on any line and after the click a little point should appear on the chosen line. Then, dragging that point, the straight line should become an L-shaped line.
    Again, as I'm new to Java I really don't know how to perform this task.
    Any pieces of code, suggestions or whatever are highly appreciated.
    Thanks in advance,
    Hannes

    Hi Hannes,
    I am still not sure about what you want but this should help you with the techniques you might need. Please look at this applet and let me know.
    Duke dollars are highly appreciated... :)
    Berk Can Celebisoy
    public class ForumTest extends JApplet {
      public void init() {   
        getContentPane().add(new CustomPanel());
    class CustomPanel extends JPanel {
      int x1, y1, x2, y2, x3, y3;
      Graphics g_;
      public CustomPanel() {
        x1 = 10;   y1 = 10;
        x2 = 10;   y2 = 90;   
        addMouseMotionListener(new MouseMotionAdapter() {
          public void mouseDragged(MouseEvent e) {       
            x3 = e.getX();
            y3 = e.getY();                       
        addMouseListener(new MouseAdapter() {
          public void mouseReleased(MouseEvent e) {        
            g_ = getGraphics();
            //draw the conecting lines
            g_.drawLine(x1, y1, x3, y3);
            g_.drawLine(x2, y2, x3, y3);
            //draw the rectangle
            g_.drawRect(x3-2, y3-2, 4, 4);                     
          public void mousePressed(MouseEvent e) {       
            repaint();        
      public void paintComponent(Graphics g) {
        //draw the initial line.   
        g.drawLine(x1, y1, x2, y2);    
        //draw the rectangles
        g.drawRect(x1-2, y1-2, 4, 4);
        g.drawRect(x2-2, y2-2, 4, 4);
    }

  • How do  put a straight line over an "o" such as in Roti Grille?

    How do I get a straight line over a letter "o" such as in Roti Grille?
    Thanks

    PeterBreis0807 wrote:
    Unless there is something else out there that I am unaware of, Roti grill is an Indian cooking method.
    Why the accent is needed I don't know, I was unaware it used one.
    One more time you read wrongly
    The OP wrote "*Roti Grille*" not "*Roti Grill*"
    In French rôti requires the accent and grillé requires its accent too !
    Yvan KOENIG (VALLAURIS, France) jeudi 28 janvier 2010 22:31:33

  • How to Stop Flickering Straight Line in CS4

    Hi all,
    For some reason CS4 cause all my straight lines to flicker. For example, if I have a video of a form with lots of straight lines on it, the rendered video of the form flickers like crazy?? I've tried to use the Anti-Flicker Filter but it made it worse?
    Please!

    More information is good
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/

  • How to make a horizontal line in java html browser?? without hr

    I use java html browser
    I want to make a black horizontal line
    the <hr> line is not good
    for my customer it seems that there is a double spacing in this case
    I tried to write
    <td style = "BORDER-BOTTOM: 1px solid #000000"> ...
    but it does not work
    I suppose this style is not supported by the default StyleSheet
    I tried to write
    <td bgcolor="black" height=1>
    but the table has all rows with equal sizes
    therefore the real height is too big
    Please help me
    I tried to write
    <table border="1">... </table>
    even in this case I have table without any border

    Hi,
    the best way might be to use a blind table with all cells set to have a border on the bottom. The problem is that the standard Java runtime does not render such setting automatically. There is plenty of work involved to adapt it and still it then would work only in the adapted version and not the standard runtime environment.
    Anyway, you can find a working example of how to accomplish individual borders around table cells in open source application SimplyHTML at http://www.lightdev.com/dev/sh.htm
    Ulrich

  • [AS] How to make cross reference at insertion point

    Hi,
    I have a book ("indb") including several documents with several "anchors"
    (german translation: "Textanker") where cross references from different documents are linked to.
    What I already got is to reference all anchors and collect them in a list.
    Now I would like to make a new cross reference at the insertion point
    in a text frame of the active document - can't get it to run :-(
    Is anybody out there who can post a AS-sample doing this?
    Thanks in advance!
    Here is the reference to an already existing anchor:
    {hyperlink text destination id 44155 of document "kapitel 2.indd" of application "Adobe InDesign CS4"}
    The code I tried to make a new cross reference looks like this - but of course doesn't work:
    tell application "Adobe InDesign CS4"
    tell active document
    make new hyperlink with properties {name:"new hyperlink", destination:hyperlink text destination id 44155 of document "kapitel 2.indd"}
    end tell
    end tell

    Thanks a lot - got it now!
    Maybe it could be helpful for others to look at your answer  
    with the placeholders replaced by "real" strings as it was hard for me
    to figure out the right form:
    tell document 1
    set theDest to make hyperlink text destination with properties {name:"Some name", destination text:<a reference to the relevant text>}
    this line for example looks like this =>
    set theDest to make hyperlink text destination with properties {name:"Some name", destination text:insertion point 902 of story id 44083 of document "kapitel 3.indd" of application "Adobe InDesign CS4"}
    set theSource to make cross reference source with properties {name:"Some name",source text:< reference to the relevant text>}
    this line for example looks like this =>
    set theSource to make cross reference source with properties {name:"Some name", source text:cursorPosition, applied format:cross reference format id 44305 of document "kapitel 1.indd" of application "Adobe InDesign CS4"}
    where "cursorPosition" was defined before by
    set cursorPosition to object reference of selection
    (the cross reference source needs the applied format reference too)
    make hyperlink with properties {source:theSource, destination:theDest, visible:true, highlight:invert, width:thick, border color:dark green, border style:dashed, name:"Whatever" }
    this line for example looks like this =>
    make hyperlink with properties {source:theSource, destination:hyperlink text destination id 44184 of document "kapitel 3.indd" of application "Adobe InDesign CS4", border color:black, highlight:none, border style:solid, hidden:false, visible:true, width:thin}
    end tell

  • CS1-Mac  How to make a graduated line (ruler) in ID?

    I'm a self-taught ID CS1 amateur.  I'm laying out a presentation in ID that will be projected page by page from a multi-page PDF file.  I need to make a diagram for one page that shows three separated, long vertical lines where each line is cross-hatched at precise intervals, such as a ruler that shows centimeters and millimeters where the centimeter has the longest cross-hatch and the millimeter the shortest except the 5th millimeter that has an intermediate-length cross-hatch.
    Each vertical line will have its own standard spaces separating the cross-hatches.  No line is expected to serve as a precise ruler, but uniform, designated spacing on each is highly desirable.
    I can find no tool in ID CS1 or Illustrator CS1 that enables me to accomplish this purpose.  Can someone either point it out to me or suggest a work-around?  If CS4 can do this, I will upgrade immediately.  Thanks in advance for any help you can give.
    Mac Pro 2.8GHz Quad-core Intel Xeon; 2 processors, 8 cores, 2GB RAM MacOS X 10.5.6, all security updates, Time Capsule 500GB, 3 internal hard drives (1 main drive, two internal backups); Apple Cinema HD Display 30" (2560x1600 res); ATI Radeon HD 2600 XT; 32-bit color.

    You can use a tall, dashed rule to get what you want.
    Use the line tool to draw a line and then format the stroke as shown. Play with it to get the look you want. If you want uneven bars, you can stack one line on top of the other and make the top one have fewer bars by spreading the dashes further apart.
    Ken Benson

  • How to make a new line item appear in a sales order in VA01 transaction?

    Dear All,
    I am trying to create a SO with single line item with quantity 100.
    Upon hitting the 'Enter' key, if the available quantity is less than the requested quantity (say 20), it takes me to an availabilty control screen which has a push-button 'One-time delivery' on the application tool bar.
    Upon clicking on this button, it takes me back to the main screen of VA01 where I currently see only one line item with quantity 100 and confirmed quantity 20.
    My requirement here is to make two line items appear, one with quantity 20 and the other with quantity 80, once I navigate back to the main screen of VA01 after clicking on the push-button 'One-time delivery'.
    Please provide me your valuable inputs. Any kind of help is highly appreciated.
    Useful answers never go unrewarded.
    Regards,
    Sreekanth Reddy B.

    Hi Sreekanth ,
    creating line items based on the confirmation qty can be done thru config, not thru ABAP,standard SAP will gives you options to create a new line item for unconfirmed qtys.
    check with ur functional consultant or try to post in SD /APO forums.
    regards
    Prabhu

  • How to make the Time Line in Vertical ?

    Hi All
    I have created a Schedule Board using the Schedule Viewer but
    including the Flexlib in my project .
    Now the thing is that the Timeline which us to come on the
    top of the
    ScheduleViewer I need to get that Time line Vertically in
    left side
    of the ScheduleViewer to display the time in left side,and
    all the
    date's in the top .
    How can I do that to get the Timeline Vertically and the Date
    at the
    position of TimeLine .
    Thanks
    Vivek Manchanda
    Theikos IT Solution

    One improvement.. To get a line that is neat, use a bit of Graphics2D
        public void paintComponent(java.awt.Graphics g)
            int w = getSize().width;
            int h = getSize().height;
            // draw a line between (0,0) and (w,h)  
            g.setColor(getForeground());
            if (strTop == null)
                strTop = "  ";
            if (strBottom == null)
                strBottom = "  ";
                java.awt.Graphics2D g2 = (java.awt.Graphics2D)g;
              g2.setRenderingHint(java.awt.RenderingHints.KEY_ANTIALIASING,java.awt.RenderingHints.VALUE_ANTIALIAS_ON);
              //g2.setStroke(new java.awt.BasicStroke(14.0f));
            g.drawLine(0, 0, w, h);
            //the following lines will draw the two strings,
            //one above the top of the line and the above below it.     
            g2.drawString(strTop, (w/2)+2, (h/2)-2);
            g2.drawString(strBottom, 2, (h / 2) + 2);
            //the x,y for drawString are only based on assumption.   //do necessary changes to suit ur needs.
        }Then create a TableCellRenderer and set it to the Table Header for ur table's 1st row.....
    Cheers

  • How to make an anchored line for a sign-up sheet?

    I work for a small non-profit, and, as such, I wear many (too many?) hats.  I have no other experience with Adobe products (except for a very short intro class to InDesign), so I apologize in advance if this is an obvious question!
    SO, I often need to make documents (sign up sheets, donation forms, etc.) where I need to have something like this:
    Name: _____________________________
    Phone: _____________________________ (etc...)
    What is the best way to do this in InDesign without just putting in a line?!?!  Lines (as far as I can figure out) are not "fixed" (anchored?), so when I want to copy or move the text box or move down the "Name" title (or a lot of other things), the line does not move along with it and I have to spend a ridiculous amount of time making and re-making lines. There must be an easier way to do this, right?
    Thank you so much!!!

    I was on my way out the door when I posted earlier, so I didn't tell you as much as I could have.
    Absolutely make use of right-indent tabs where they work. I also often use a space or thin space between the text and the tab to provide a separation between the text and the line. I usually use a character style to add the underline, and you can either use find/change to apply it after you are done, or if you're ambitious you can use a nested style.
    If you want to use a nested style, start by applying none up to 1 ^t^y then the underline style through 1 ^t^y and finally repeat the last two styles. ^t is the metacharacter for a tab and ^y is the metacharacter for a right indent tab, and both are probably in the list of things you can select in the dialog, but now you know in case they aren't. One of the quirks of nested styles is that if you add more than one character to the trigger, ID will use the first one it finds from the list, so by adding BOTH types of tabs ID will find both a regular and right indent tab, or several regular tabs, on the same line, using the same nested style.

  • HT2523 how to make a simple line across the page

    how to mmake a line across

    In what application, running what version of OS X?
    (A Mac cannot run iOS)

Maybe you are looking for

  • How to publish Aperture projects to iWeb

    iPhoto has a button that enable one to publish photos directly from iPhoto into iWeb.  I can not find such a button since I moved up to Aperture.  Am I missing it?  Or, I may be going about it the wrong way.   I currently use MobileMe to host a famil

  • SLD Configuaration in PI 7.0

    Hello Experts, In our Production PI system We did Install PI 7.0 , We have to Configure SLD now ... Can any one have SLD Configuaration Guide Step by Step in ABAP and JAVA side in PI 7.0 Thanks &Regards Praveen

  • Assign keyboard layout switch hotkey not listed in the keyboard applet

    I found some old tutorial to assign left alt+shift to 1st layout and right alt+shift to 2nd layout. How to adapt it to the modern hal way? Here it is: create $XKBROOT/mysym : partial modifier_keys xkb_symbols "shift_ctrl_1" { key <LFSH> { type="PC_BR

  • Conference room microphone for MBP

    I run video conferences via GoToMeeting, using iChat to show remote guest speaker on desktop. The venue may be a meeting room or small auditorium. I've been trying to use a wireless mic to input meeting room participants and audience questions, but t

  • IPhoto'08 inverted colors after import

    I've been having problems with photos imported into iPhoto Camera is Canon IXUS 70. After transfer to the desktop it looks fine in Preview, but once transferred to iPhoto it appears violet, inverted or negative? I tried all the methods but nothing wo