Creating a squiggly line

How do I create a squiggly line in Acrobat Pro X?

Hi,
This is what I'm talking about regarding Special Characters under the Edit Menu.
When you click on it this pops up. I'd like to use this wavy line but don't know how to access it.
I need to make notations in files using a vertical squiggly line.
Thanks,
Paula

Similar Messages

  • Creating a contour line

    hello everybody
    i'm trying to create a contour line as if its being drawn by hand. is there a way to do that in Java3d and how?
    thanks in advance

    Hi,
    This is what I'm talking about regarding Special Characters under the Edit Menu.
    When you click on it this pops up. I'd like to use this wavy line but don't know how to access it.
    I need to make notations in files using a vertical squiggly line.
    Thanks,
    Paula

  • MRP create more Schedule Lines than target quantity

    We already follow the OSS note 83343, we create a Schedule agreeement and validity date is the same as the Source List and Quota arrangement, also the Target Quanity is the same in the quota arrangement in the maximun quantity and Maximun release qty fields.
    After maintaining that data, we run the MRP as follow:
    Processing key          NETCH               Net change for total horizon
    Create purchase req.    2                   Purchase requisitions in opening period
    Delivery schedules      3                   Schedule lines
    Create MRP list         1                   MRP list
    Planning mode           1                   Adapt planning data (normal mode)
    Scheduling              1                   Basic dates will be determined for plann
    After that, still in teh schedule agreement was created more schedule lines that the quantoty is bigger that the target quantity in the sched Agreement.
    What else we miss??

    Thanks for your not help.
    That I can investigate is the quota arrenagement is incorrect but for some reason the QA is not working.

  • FM to create subcontracting delivery lines

    Hi Folks,
    We are using one custom function module to create subcontracting delivery lines. Inside this custom FM, we are using ME_COMPONENTS_MAINTAIN function module first to maintain the components and then ME_UPDATE_SCHEDULES_DISPO to create delivery lines for the schedule agreement. Actually the ME_COMPONENTS_MAINTAIN is displaying a screen where you have to maintain the material, wquantit etc. manually. But we dont want that. We need to create subcontracting delivery lines without manual intervention. Is there any FM available for this requorement? Or else can I use ME_UPDATE_SCHEDULES_DISPO directly to create subcontracting delivery lines? I know this query is more functional than technical. Kindly provide your inputs.
    Thanks,
    Mani

    http://scn.sap.com/thread/175138
    (about halfway down, Stefan Berger's post)
    I've not completely tested this yet, but whilst investigating a similar problem, I came across the above thread. ME_COMPONENTS_MAINTAIN has a paramater "I_FCALL" which if you set to 'X' doesn't call the screens, and just runs in background.
    You can also see the variable population by putting a breakpoint in the top of this fm, and then running the frontend transaction.

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • Create a new line in the xml-header structure.

    Hi,
    Can any one tell me how to create a new line in the xml-header structure.
    I am doing a IDOC-XI-HTTP scenario.
    Actually my mapping create this file:
    <b><?xml version="1.0" encoding="utf-8"?>
    <ORDERS05>
      <IDOC BEGIN="1">
        <EDI_DC40 SEGMENT="1"> </b>
    The result must look like this.
    <b><?xml version="1.0" encoding="utf-8"?>
    <ORDERS05>
      <IDOC BEGIN="1">
        <EDI_DC40 SEGMENT="1"> </b>
    Thanks and Regards,
    Eren

    Hi,
    thanks for you quick answer.
    I found a xsl script.
    It works fine.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>
       <xsl:template match="*">
          <xsl:param name="depth">0</xsl:param>
          <!-- New line with indenting. -->
          <xsl:if test="$depth > 0">
             <xsl:text>    </xsl:text>
          </xsl:if>
          <xsl:text>&#xA;</xsl:text>
          <xsl:element name="{name(.)}">
             <xsl:for-each select="@*">
                <xsl:attribute name="{name(.)}"><xsl:value-of select="."/></xsl:attribute>
             </xsl:for-each>
             <xsl:apply-templates>
                <xsl:with-param name="depth" select="$depth + 1"/>
             </xsl:apply-templates>
          </xsl:element>
       </xsl:template>
    </xsl:stylesheet>
    Best regards
    Eren

  • Create a new line in the smartforms

    Hi Guys,
    Please let me know to create a new line in the smartforms.
    I tried creating a window with the height length is 0 cms.
    It is allowing to create a line.

    Hi,
    First I need to include the LOGO and next line I need to make a line.
    What do you mean by 'making a line '?
    Is it an empty line?
    If it is just a blank line, while creating the text below the logo just give one line space and then type in your text.
    Regards,
    Shailaja

  • How to create a new line in label in Xcode

    How to create a new line in label. for example I have two buttons & one label. when i press first button, l want to change the label text to "Hello World". then when I press the second button, on the same label I need to display"Good Bye" on the next line in xcode 5?
    I want to display the lablel like below:
    Hello World
    Good Bye

    I am using Xcode to develop an app for iOS.
    I tried using multi-line label & belwo is my code.
    - (IBAction)change:(UIButton *)sender {
        self.Screen.text = @"\nHello World";
    - (IBAction)newChange:(UIButton *)sender {
          self.Screen.text = @"\nGood bye";
    everytime when i pressed the button, it replacing the whold lable text instead of adding the second line.

  • Creating a new line in PLSQL

    I am trying to create a new line by returning a variable from a function by coding the following which worked for the last version of HTML_DB and understood that after my variable named vlname I wanted a new line
    msg := 'NAME: ' || vlname ||'<br><br>';
    When passing back the value of msg now in Application express. This exact code I repeat worked for the last version of HTML_DB.
    I don't know why but the new version thinks it's literal
    and is displaying the name and then actually prints <br><br>.
    Does anyone have a ny suggestions ?
    Thanks
    Aron

    I just did the following:
    Created this function:
    create function br_test
    return varchar2
    is
    begin
      return '&lt;br>qwerty&lt;br>qwerty&lt;br>';
    end;Created a blank page with a html region. I then created an an item of type Display as Text (does not save state). Item Source type = PL/SQL expression or function and Source value or expression = br_test.
    When I run this qwerty is shown twice on seperate lines. What is different in you case?
    Regards Pete

  • Hi,  I'm having a problem with the stabilization all of a sudden. I did an analyze. The amount of shake isn't terrible but it's there. There are no squiggly lines in the clip I'm trying to stabilize. As you can see in the screenshot that it allows me to c

    Hi,
    I'm having a problem with the stabilization all of a sudden. I did an analyze. The amount of shake isn't terrible but it's there. There are no squiggly lines in the clip I'm trying to stabilize. As you can see in the screenshot that it allows me to click the "Smooth clip motion" but the slider is not there for zoom. Any ideas why this is happening all of a sudden? It happens on all clips in this event. The entire event was analyzed after importing.

    What program are you using for this editing?
    We can ask a Host should move your query over to that forum.

  • Creating a new line for a row layout

    Hi
    i am building a web service based OA page...
    For this i have a created a VO with transient variables which holds the values from webservice.
    Now i have a row layout region where i key in some values which are required to call webservice..
    using this values webservice is called..and object is returned from webservice ,from which vo transient attributes get the values..
    now my requirement is i need to create one more line to key in more rows...at any point of time user can create a new row to query a different item ....or existing item..
    The queried results can be seen in the underlying table region which holds the VO attributes discussed above..
    Please help in this...how to achieve above mentioned functionality...
    If u need more clarifications please write to me...

    If you can provide a screenshot of your page then it will be helpful to understand the problem.
    Cheers
    Ganesh

  • How to create a new line item automatically in CRMD_ORDER

    Hi,
    While creating a sales order in CRMD_ORDER, after user enters a line item say 'xxxx' and press 'Enter', we need to create a new line item say 'yyyy' dynamically.  Any ways of how to achieve this functionality?
    thanks in advance,
    amar.s

    Hi Amar
    You can use structured products:
    Step1:COMM_PR01
    Open Product xxxx > Relationships > Tab Component > Select Relationship type = STRSET Set > Assing product yyyy
    Step2: IMG > CRM > Transactions > Define Item Categories
    Open you item category and in Structure scope field select option A Single-Level Explosion of structured products
    Step3: IMG >  CRM > Transactions > Define Item Category Determination
    create new entry
    Transaction type =
    Item   category group = Category group of xxxx product
    main item cat = item cat of xxxx product
    item cat =  item cat of yyyy product
    now when you enter product xxxx , product yyyy will be automatically added
    Hope it helps
    Rupesh

  • How can I make a squiggly line in Adobe Acrobat 9 Standard

    Or edit a straight line with a squiggly line style (or import new line styles)
    Thanks!

    If it does not need to be neat, just use the pencil tool. The only other option would be to check the properties of a line you make and see if there is a format option, I don't remember seeing one.

  • How can i use this library to draw squiggly line below word for RichEditable?

    Squiggly Release Notes:
    AdobeSpellingFramework.swc
    A class that facilitates the drawing of squiggly lines below words for various text components.
    Im not using squiggly spell check egine bcause it is not supporting arabic language.
    Rest of the work i have completed, i just want to draw squiggly lines below word.
    Please help me.....Thanks

    Did you ever get an answer for this ?

  • Shopping cart created with one line item with qty 10  . PR need to be creat

    Hi gurus
    1SC created for  ONE LINE ITEM with QTY  10
    PR need to be created with  10 LINE ITEMS with Qty 1.
    Classic Scanario
    Advise .
    2.Also please let me know  what the batch jobs for  delta  ( user data or HR data) upload. To upload all user changed data synchonization job
    3.Also please let me know what is the batch job for  escalation emails for approvals
    SD

    close not answered

Maybe you are looking for

  • Zen Vision:M Will No Longer Allow Me To Sync From Full Blown Outlook. Has Worked Befo

    Synchronize organizer data from: no longer shows the option of Outlook. The only option now is Outlook Express (Windows Address Book). The Outlook option was there in the past and worked very well. In can find no setting in the software that will all

  • Space is not released after truncating the table

    Team, We have a table of size 550gigs in size and we truncated the table , truncated sucessfully but space is not released in os level, what action we can take to release the space and this table has only one row and contains the binary data. Thanks

  • Acrobat 9 beta (tryout

    Hello to all, somehow I missed "Acrobat 9 beta". Was there a public beta or tryout which is still downloadable? Thank you in advance for information. DuperSuper

  • Cracked screen, touchscreen not working, need to backup. Help?

    Hola, I dropped my iPhone 3G and broke the screen ... AGAIN ... in a comical addition to what has been a bad week of epic proportions. Anyways, I have a passcode on the phone, but with the touchscreen not working, I can't enter it. Therefore I can't

  • Invoke a presentation from another presentation

    Hi everybody, I need to invoke a presentation from another presentation, to generate an e-mail, like a popup. I would prefer not to use another task to do this. In the parent presentation i need a button Mail that invokes a presentation in which i wo