Inserting Link element

Hi
I am creating a text link using link element and after adding it in paragraph element.When the link is created it requires ctrl key pressed together with link to operate.Can i insert a link in my text that doesn't require the ctrl key pressed while clicking the link.
thanks.

If your text is editable, then it will require the control key to interact with the link (this is so that you can edit the link text without activating the link).
If you want to interact with the link without the control key, you have to make your text is either non-editable or merely selectable. If you're working with TextFlows directly, you make the text non-editable by setting TextFlow.interactionManager to null, or merely selectable by setting TextFlow.interactionManager to a SelectionManager rather than an EditManager.

Similar Messages

  • How to insert links in an Acrobat 8 pdf document to open folders

    I am using Acrobat 8 and have made a "menu" page in InDesign which will has links in it to open other pdf documents. I have successfully exported to PDF from InDesign and inserted links to my PDF files which work perfectly. I now need to insert a link to direct the user to a particular folder so they can view the files/folders within that folder.
    The complete set of documents will be burnt onto DVD and the "menu" pdf will open using an autorun file.
    How can I insert a link in the PDF document that will open the folder that I want the reader to be able to view and navigate through themselves.  Any suggestions would be very much appreciated as this is a major job for a client.  I have seen a few ideas on the net but nothing that really answers my particular question.
    Cheers - Claire

    what should have been done, is place all the PDF in Folder including your contents page and Make all your links in Indesign. Then burn the folder to the DVD. That way all the links would be relative to location of the files.
    Try a test that way. As was said Acrobat can't do it.

  • Need help in Insertion of Element in DefaultStyledDocument

    Hello:
    I am developing an XML editor by extending the DefaultStyledDocument of javax.swing.text package. I am not able to insert an element in the document.
    This is what I have done: (I need to insert one BranchElement, with two leaf child elements.)
    I inserted the text in the document corresponding to the first child element using insertString() method. In the insertUpdate() method of the document, I am creating the branch element and its first child covering the inserted text. I then call the insertUpdate() method of DefaultStyledDocument. Similarly, I insert text corresponding to the second child and modify the element structure inside insertUpdate() and then call the insertUpdate() of DefaultStyledDocument().
    At the end of the execution, the element structure is okay, but all the inserted text also becomes a part of the previous element.
    for example,
    if I have the following element structure at the beginning: (element offsets are in the square brackets besides their names, child elements are indented.)
    html [0 2]
    start-leaf [0 1]
    end-leaf [1 2]
    and I insert body at position 1 with its two children (each of length 1)
    I get the following element structure:
    html [0 4]
    start-leaf [0 3] //why this?
    body [1 3]
    start-leaf[1 3] //why this instead of [1 2]?
    end-leaf [2 3]
    end-leaf [3 4]
    And, I am not able to see the Views corresponding to the inserted elements.
    (I tried without modifying the element structure explicitely, but it doesn't work that way.Also, I am able to remove elements from the document. In that case also I am following a similar logic: remove the data from the document using remove() method and modify the element structure inside removeUpdate(). and it seems to work fine.)
    Can anyone please help me understand why this is happening?
    Thanks a lot!

    like this ??
    SQL> Create Table t1
      2  (a Number,
      3   b Number);
    Table created
    SQL>  Create Table t2
      2  (a Number,
      3   b Number,
      4   c Number Not Null);
    Table created
    SQL>  Insert Into t1 Values (1,2);
    1 row inserted
    SQL> commit;
    Commit complete
    SQL>  Insert Into t2 Select t.*,3 From t1 t;
    1 row inserted
    SQL> commit;
    Commit complete
    SQL> select * from t1;
             A          B
             1          2
    SQL> select * from t2;
             A          B          C
             1          2          3
    SQL> hope this helps you

  • Insert Link and Insert Image broken in Chrome

    The Insert Link and Insert Image buttons have been broken in my Chrome for at least the last couple of days (latest version, 32.0.1700.72 m, Windows 7 64).  
    When you click one of the buttons, the overlay window appears with a title, but it is otherwise black with no contents.  (See screenshot below.)
    The buttons work fine in Firefox.  What hasn't helped: deleting cookies, clearing the browser cache, waiting for several minutes for their content to appear.

    Whtat are we supposed to Claudio? All descend on Adobe with  clubs and try to beat some sense into someone!
    The fact is the customer is no longer the prime concern. Most companies don't give a Rats behind (toned down to prevent censors action) about the customers. It's the almighty dollar. Screw as many customers as they can while they can and line their pockets with all the green backs  as they can while they can. Then if the cusomers leave so be they take their money and run.
    Customer use to have power, they would speak loud and frequently and get things  fixed. And what with people from other countries now owning US companies, That were brought up with different moral compasses. They have no concept of this thing of loyalty to customers. The customer can jump off a cliff and they will simply cheer them on while the do so.
    We have lost, the fight can't be won. It no use. So Pat and others are right.
    I've been trying for 15 years for adobe to fix the issue of having multiple Pdfs created from Office documents because the claim they can't figure out how MS does Page and section breaks. And the issue of Weblinks not being active when converted to PDF's Both on Mac's yet on PC's there is no issue. I quite this year after I received a down right nasty not from Adobe say they didn't have any interest in fixing the bugs and were not about to try. What it amounted was go take a flying leap.
    They have the ability. They have beenblaming Its apple because they don't do such and such , or Microsoft because they don't do so and such. On the Links issue Saying MS doesn't provided the necessary hooks in the mac version of Office. They do you can take a Word document created on a Mac and open a PC and create a PDF and the links will be active. You can Open a Word Document in Apple's pages and all links created in Office document will be there.  The argument has been proven several different ways to be a an outright bald-faced lie. The defect is squarely with the Mac version of Acrobat.
    So Pat and others are right. Just throw in that towel. Adobe support of its customers is now 10 times worse than intuit's which is supposed have the lowest reputation of any software compny that ever existed.

  • Inserting an element into an XML document

    I am simply looking insert a new element into an existing XML Document using JDOM. Here is my code so far:
    public class UserDocumentWriter {
         private SAXBuilder builder;
         private Document document;
         private File file = new File("/path/to/file/users.xml");
         private Element rootElement;
         public UserDocumentWriter() {
              builder = new SAXBuilder();
              try {
                   document = builder.build(file);
                   rootElement = document.getRootElement();
              } catch (IOException ioe) {
                   System.err.println("ERROR: Could not build the XML file.");
              } catch (JDOMException jde) {
                   System.err.println("ERROR: " + file.toString() + " is not well-formed.");
         public void addContact(String address, String contact) {
              List contactList = null;
              Element contactListElement;
              Element newContactElement = new Element("contact");
              newContactElement.setText(contact);
              List rootsChildren = rootElement.getChildren();
              Iterator iterator = rootsChildren.iterator();
              while (iterator.hasNext()) {
                   Element e = (Element) iterator.next();
                   if (e.getAttributeValue("address").equals(address)) {
                        contactListElement = e.getChild("contactlist");
                        contactListElement.addContent(newContactElement);
                        writeDocument(document);
         public void writeDocument(Document doc) {
              try {
                   XMLOutputter output = new XMLOutputter();
                   OutputStream out = new FileOutputStream(file);
                   output.output(doc, out);
              } catch (FileNotFoundException ntfe) {
                   System.err.println("ERROR: Output file not found.");
              } catch (IOException ioe) {
                   System.err.println("Could not output document changes.");
         }However, the problem is, the newly added element will always be appended to the end of the last line, resulting in the following:
    <contactlist>
                <contact>[email protected]</contact><contact>[email protected]</contact></contactlist>Is there anyway in which I can have the newly added element create it's own line for the purpose of tidy XML? Alternatively is there a better methodology to do the above entirely?

    Your question is not very clear.
    Do you want to know How to insert an element into an XML document?
    Answer: I can see you already know how to do it. You have added the element using addContent()
    or do you want to know How to display the XML in a tidy format?
    Answer: to view the XML in a properly formatted style you can you the Format class. A very basic way of viewing the XML would be:
       * Prints the Document to the specified file.
       * @param doc
       * @param filename
       * @param formatting
      public static void printDocToFile(Document doc, String strFileName,
          boolean formatting)
        XMLOutputter xmlOut = null;
        if (!formatting)
          xmlOut = new XMLOutputter();
        } else
          Format prettyFormat = Format.getPrettyFormat();
          prettyFormat.setOmitEncoding(false);
          prettyFormat.setOmitDeclaration(false);
          xmlOut = new XMLOutputter(prettyFormat);
        try
          if (doc != null)
            FileWriter writer = new java.io.FileWriter(strFileName, true);
            xmlOut.output(doc, writer);
            writer.flush();
            writer.close();
          } else
            System.out.println("Document is null.");
        catch (Exception ex)
          System.out.println(ex);
      }

  • PDF form - outlook insert link not working

    I created PDF Form with button having js program (this.mailDoc()). Program is working, when click the button outlook mail open with PDF form as attachment. But In the MS outlook mail body, Insert Link is not working (I need to insert hyper-link in the same mail along with PDF Form as default attachment)
    Please guide to come out this.
    Thanks

    Hi vijayk,
    Which hyperlink you are taking about. Can you explain what actually you are trying to do.
    I am not able to understand what are you trying to achieve.
    Regards,
    Ajlan Huda.

  • How to I activate the "insert link" function which accepts a saved/pasted address for highlighted text in V31.0?

    It worked perfectly in prior versions, but now in this version 31.0, when I try to paste a saved URL as a link into highlighted text, it returns this error message: "(No named anchors or headings in this page)", and refuses to accept a paste. Note that this is broken both when clicking on the little blue screen icon as well as when selecting "insert/link" from the function bar. I've looked everywhere for some sort of new configuration option to correct this, but to no avail. What am I missing?

    No, that's not the issue. I am writing simple text in an outgoing message, then highlighting a few words (such as "click here to visit the site"), then when I use any of the three methods to assign a link to those highlighted words (Ctrl L, insert/link, or clicking on the little blue screen icon), the normal window opens with a box to insert the URL, but when I try to PASTE such a saved URL into that box, the aforementioned error message appears. Note that I can manually TYPE a URL into that box with no problem, but version 31 will not allow me to PASTE one. I've always successfully used exactly that procedure with prior versions.
    Note also that when I insert an image into an outgoing message and try to paste a link to it in the same way, the same error message pops up. That also always worked in prior versions.
    Because e-mail is crucial to me, I have now re-installed a prior version (24.6.0) of Thunderbird in which this function works perfectly, so for now, problem solved. But I hope you can fix this so I can use future versions.
    BTW ... I'm using Windows 7 Professional on a PC running an Intel 64-bit 7 core processor.

  • Insert link is not functioning properly. Please help.

    Hello :)
    My insert link option used to work just fine.
    Recently, it is not allowing me to do this and I cannot understand why.
    All I get is 'NO NAMED ANCHORS OR HEADINGS IN THIS PAGE'. This is VERY frustrating!
    Please help me as I need to send many links for work,and I don't know how else to do it.
    Thank you.

    Is the cursor in the message text area? Have you already entered any message text when you try to insert your link?

  • Cannot "insert link from km" in WPC

    Hi. We have EP 7.0 SPS21 implemented. I am experiencing issues with WPC, in that I am now not able to "insert link from km" when in edit mode inside a paragraph or Advanced paragraph. I goto the path of the .PDF file in KM & select it, but the link is not created. This is now happening after we implemented SPS21.
    Please advise.
    Kind Regards,
    M.

    Good Morning Aliaksandr. Thank-you for your prompt response. See below for the versions of the components. Plse advise...
    sap.com  CORE-TOOLS  7.00 SP21 (1000.7.00.21.0.20091214120657)  SAP AG  SAP AG  20100220101007 
    sap.com  EP-PSERV  7.00 SP21 (1000.7.00.21.0.20100122081155)  SAP AG  SAP AG  20100220110545 
    sap.com  EP-WDC  7.00 SP21 (1000.7.00.21.0.20091214203918)  SAP AG  SAP AG  20100220110619 
    sap.com  EPBC  7.00 SP21 (1000.7.00.21.0.20091214203545)  SAP AG  SAP AG  20100220102617 
    sap.com  EPBC2  7.00 SP21 (1000.7.00.21.0.20091214203611)  SAP AG  SAP AG  20100220110621 
    sap.com  FORUMS  7.00 SP21 (1000.7.00.21.0.20091214174900)  SAP AG  SAP AG  20100220110816 
    sap.com  JLOGVIEW  7.00 SP21 (1000.7.00.21.0.20091214103400)  SAP AG  SAP AG  20100220101027 
    sap.com  JSPM  7.00 SP21 (1000.7.00.21.0.20100120140600)  SAP AG  SAP AG  20100220084503 
    sap.com  KM-KW_JIKS  7.00 SP21 (1000.7.00.21.0.20091214120914)  SAP AG  SAP AG  20100220102636 
    sap.com  KMC-BC  7.00 SP21 (1000.7.00.21.0.20091214203935)  SAP AG  SAP AG  20100220110821 
    sap.com  KMC-CM  7.00 SP21 (1000.7.00.21.0.20100122081448)  SAP AG  SAP AG  20100220110827 
    sap.com  KMC-COLL  7.00 SP21 (1000.7.00.21.0.20091214204159)  SAP AG  SAP AG  20100220110847 
    sap.com  KMC-UI  7.00 SP21 (1000.7.00.21.0.20091214174900)  SAP AG  SAP AG  20100220105719 
    sap.com  KMC-WPC  7.00 SP21 (1000.7.00.21.0.20091214174600)  SAP AG  SAP AG  20100220110850
    sap.com  LM-PORTAL  7.00 SP21 (1000.7.00.21.0.20100118101206)  SAP AG  MAIN_APL70P21_C  20100220110853 
    sap.com  LM-TOOLS  7.00 SP21 (1000.7.00.21.0.20100118110644)  SAP AG  MAIN_APL70P21_C  20100220104212 
    sap.com  NET-PDK  7.00 SP21 (1000.7.00.21.0.20091214151400)  SAP AG  SAP AG  20100220105741 
    sap.com  RTC  7.00 SP21 (1000.7.00.21.0.20091214194600)  SAP AG  SAP AG  20100220105746 
    sap.com  RTC-STREAM  7.00 SP21 (1000.7.00.21.0.20091214194600)  SAP AG  SAP AG  20100220110858 
    sap.com  SAP-EU  7.00 SP21 (1000.7.00.21.0.20100118101502)  SAP AG  MAIN_APL70P21_C  20100220111419 
    sap.com  SAP-JEE  7.00 SP21 (1000.7.00.21.0.20091214121301)  SAP AG  SAP AG  20100220101108 
    sap.com  SAP-JEECOR  7.00 SP21 (1000.7.00.21.0.20091214121410)  SAP AG  SAP AG  20100220101344 
    sap.com  SAP_JTECHF  7.00 SP21 (1000.7.00.21.0.20091214121505)  SAP AG  SAP AG  20100220101432 
    sap.com  SAP_JTECHS  7.00 SP21 (1000.7.00.21.0.20091214121635)  SAP AG  SAP AG  20100220103234 
    Kind regards,
    Melvin

  • Insert/link a PDF file in MM02 transaction.

    hi
    I would like to know if it is possible to insert/link a PDF file in MM02 transaction.
    Please let me now something.

    Hi Vale,
      I think that it would be possible to insert the pdf file to the MM02 transaction: Please try following the below steps:
    1) Follow the path : MM02 -> System -> Service for Object -> Create -> Create External Document (URL).
    2) You will get a popup saying "Create a link for Web page".
    3) Fill in the required details as per the requirement. Give the appropriate title, Location for the file to be attached ( Path ),
    4) Click on Execute button, SAVE.
    Note: Please remember to provide the file extension like .pdf while attaching the file. Else the file wont be displayed when you try to display the attached file.
    Thanks
    Pawan

  • On Yahoo Mail, the "insert link" function stopped working

    For the past few months, the "insert link" function doesn't work properly when trying to insert a link into a message. It inserts the link in the wrong place. For example if i paste the following text into a message:
    Regards,
    Jeff
    http://mywebsite.com
    and then if i highlight the URL, copy it, click the "insert link" icon, and paste the URL, it does something crazy like this:
    Regards,http://mywebsite.com Jeff
    or it makes the entire 3 lines of text a clickable link, instead of just the URL.
    It works fine in Internet Explorer.
    Things i've tried in Firefox 26.0:
    - disabled all add-ons (then restared browser)
    - cleared cache
    - cleared all Yahoo cookies
    By the way, in Internet Explorer, pasted URLs automatically appear as links in Yahoo Mail without having to click "insert link". I wish Firefox enabled this, because it's very time consuming to manually create lots of links. Any plans for improving this?

    I'm struggling to understand the difference between tabbing into the message body and clicking in it. I typed ''I'm mystified!'' and then copied the HTML as of that point. Then I selected mystified and added a link, and copied the new HTML (attributes of the initial div tag removed):
    (1) Before adding the link
    (A) Tab in
    &lt;div>'''I'm mystified!'''&lt;br><br>&lt;p id="yui_3_13_0_ym1_13_1390977543218_8">&lt;span>&lt;br class="yui-cursor">&lt;/span>&lt;/p><br>&lt;div id="yui_3_13_0_ym1_13_1390977543218_10">&nbsp;&lt;/div><br>&lt;div id="yui_3_13_0_ym1_13_1390977543218_12">'''-Jefferson'''&lt;/div>&lt;/div>
    (B) Click in
    &lt;div>&lt;p id="yui_3_13_0_ym1_12_1390977543218_8">&lt;span id="yui_3_13_0_ym1_12_1390977543218_15">'''I'm mystified!'''&lt;br class="yui-cursor">&lt;/span>&lt;/p><br>&lt;div id="yui_3_13_0_ym1_12_1390977543218_10">&nbsp;&lt;/div><br>&lt;div id="yui_3_13_0_ym1_12_1390977543218_12">'''-Jefferson'''&lt;/div>&lt;/div>
    (2) After adding the link
    (A) Tab in
    &lt;div>'''I'm''' &lt;a href="http://asdf">&lt;font id="yui_3_13_0_ym1_13_1390977543218_16">'''<u>mystified</u>'''&lt;/font>&lt;/a>'''!'''&lt;br>&lt;p id="yui_3_13_0_ym1_13_1390977543218_8">&lt;span>&lt;br class="yui-cursor">&lt;/span>&lt;/p><br>&lt;div id="yui_3_13_0_ym1_13_1390977543218_10">&nbsp;&lt;/div><br>&lt;div id="yui_3_13_0_ym1_13_1390977543218_12">'''-Jefferson'''&lt;/div>&lt;/div>
    (B) Click in
    &lt;div>&lt;p id="yui_3_13_0_ym1_12_1390977543218_8">&lt;a href="http://asdf">&lt;font id="yui_3_13_0_ym1_12_1390977543218_18">'''<u>mystified</u>'''&lt;/font>&lt;/a>&lt;span id="yui_3_13_0_ym1_12_1390977543218_15">'''I'm !'''&lt;br class="yui-cursor">&lt;/span>&lt;/p><br>&lt;div id="yui_3_13_0_ym1_12_1390977543218_10">&nbsp;&lt;/div><br>&lt;div id="yui_3_13_0_ym1_12_1390977543218_12">'''-Jefferson'''&lt;/div>&lt;/div>

  • Hihow to insert 2 elements into 2D array?

    Hi I had a hard time figuring out how to insert 2 elements into 2D arrays. 
    I tried using replace and insert array functions but it does not work right way.
    I am using LV7.1. See the pic below.
    How do I insert elements in that way?
    Pls advise
    Clement

    Well, "replace array subset" is not the right tool, because it keeps the size of the array constant. Insert into array only works for entire rows or columns.
    You need a hybrid approach, because you want to insert elements at the beginning of column 1 while padding the remaining columns to the new lenght of column 1. This won't be efficient but there are plenty of ways to do that (here is one example with DBL arrays, should work equally well for string arrays as in your case).
    How much flexibility do you need? Is it always at the beginning of the first column? Are the arrays huge (=is performance an issue)? Is this a rare operations or do you constantly need to do this (e.g. inside a loop).
    In any case this seems like a rather arbitrary and somewhat silly operation. What is the practical purpose?
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    WeirdMerge.vi ‏21 KB

  • Is there a keyboard shortcut to Insert Link?

    So some options like Bold, Underline, Italics have keyboard shortcuts.
    Has any one figured out a keyboard shortcut to Insert Link? What about Insert Photo?
    What about a keyboard shortcut for pasting the text in the clipboard in as plain text?

    Couple of ways to do that.
    Great. I'll give it a shot...
    1) Use the Quote icon to quote and requote the message being replied to, then delete all the stuff not wanted for each instance. That's too tedious for me.
    Agreed.
    2) Copy and Paste the selected parts of the message being replied to. Once one part is pasted in, select it again in the compose box and click the Quote icon. Repeat as needed. When you select text in a compose box and click the Quote thingie, instead of quoting the previous message it will set off the selected text in quoted style.
    So that's the secret. Thanks!
    I use the second method, but with a variant. If I know I'm going to be chopping up the replied to message like that, I just copy/paste the whole thing into the compose box. Then I break it up, adding a response to one section before moving down and adding a response to the next section. The last thing I do before posting is to select each of the pasted parts and click the Quote thingie.
    The reason I wait until the end to set them off in quoted style is that although you can undo the quoted format, it's not convenient to do so. I find it easier to get all my tweaking done first.
    Makes sense, as long as you don't inadvertently apply the quote thingie to your own response, but I guess that can be fixed.

  • I am new to pages and want to know how to link elements together to create one unified element that I can then duplicate several times on the same page?

    I am new to pages and want to know how to link elements together to create one unified element that I can then duplicate several times on the same page?

    I think you are talking about grouping objects.
    1. They must all be floating objects
    2. Command click on each in turn
    Menu > Arrange > Group
    Peter

  • Sharepoint 2010 add/edit form: Insert link from sharepoint disabled

    Hello!
    I have a list with enhanced rich textbox field. I can click on Insert link, "from addres" is enabled, but "from Sharepoint" is disabled.
    Is there a reason why is this button disabled? Field is enhanced rich textbox... Paste button is also disabled.
    Thanks

    Microsoft says
    it is an issue but you can check
    design this strange behavior on other occasions:
    If we have a Web page in the root
    of the site and insert a Web Part content "from SharePoint" will
    disabled, but if this same Web Part Page
    is in a library "from SharePoint"
    is enabled What is the difference? I do not know.
    Worse. If we insert the Web Part
    to a page in the root of the site is
    a list or library that has a link produced by a
    workflow, an error as seen in
    http://www.danielroot.info/2010_07_01_archive.html
    But the link works correctly if the
    page is within a library.
    Are these design issues also?
    Sorry for my English.
    Soy Miguel de Torre Arias

Maybe you are looking for

  • Consuming Web Services with ABAP - WSDL

    Hi All, I Want to consume web service in abap, i found lot of documents,Here i am having data in the internal table i need to pass it to wsdl file, The Web Service or Proxy generates a WSDL file. So this WSDL file can be consumed on ABAP Front and En

  • Change character encoding from UTF-8 to EUC-KR

    We are receiving data in UTF-8 in the querystring from a partner formatted as: %EA%B3%A0%EB%AF%BC%ED%95%98%EC%9E%90%21 Our site uses EUC-KR so using this text for search/display/etc is not possible. Does anyone know how we can convert this to the pro

  • Issue Regarding Bank Key

    Experts When i am trying to create IT0009 with Bank details, While chooing bank key i am getting another screen with bank counry Inida but i am not getting the bank list and getting the message Search was unsucesfull. I already moved the  Configurati

  • How can i configure yahoo chat mail with ichat

    Hi Everyone, Can anybody explain how to configure yahoo mail with ichat, I did it already and its working properly with text chat but the voice and video features are not available.

  • Best Method for transfering iTunes library from Windows 7 to Mac OSX

    I just bought a MacBook Air and am in the process of preparing my file transfer. The only data on my computer I really care about is my school/work files, (which are very easy to transfer), and my iTunes library. What is the best method for transferi