Script to link a word/phrase to another place elsewhere

Hi,
I want to click on a word or a phrase at 1 place & it would link to that same word  at another place/page in Adobe LC Designer 8.2 for the Adobe.  Thanks for your help!
Trang

No text based hyper links allowed with in the document. However you can code setFocus method (xfa.host.setFocus("<destination somExpression>")) if you wish to navigate between two input objects. Also users may use Find (Ctrl+F) functionality to find out similar phrases on the generated document.

Similar Messages

  • Link one solution manager word document into another solution manager HTML

    Hi,
    I have requirement in solution manager that there are two documents uploaded into solution manager.
    1. One word document in one of the project folder
    2. HTML page in another folder of same project
    I have to set up a hyper link of word document in the HTML web page.
    If anyone has gone through this type of requirement, please let me know the details of how did you set up the link between word and HTML document.
    Appreciate the early response.
    Thanks,
    Siva

    Go to the properties of the file you want to link your word document to. (attributes icon)
    There you will find a button "Generate Document URL (F9)". Clicking this button will buffer the URL into clipboard.
    Then you open your Word document in edit mode and paste the URL there.
    source: Inserting a document into another in Solution Manager

  • Is there a way to link from one application to another? Like Hyperlink but instead of cyberspace just internal. Application linking.

    In "Pages" you can Hyper Link a word or phrase by going to Inspector Link highlight the word or pharse click on "Enable as a hyperlink" and then place a URL address. The highlighted word or phrase will now be blue and anytime I click on it I will be taken the the URL address.
    What I want to do is that exacltly, but I want to able to link a word or a phrase to another internal Mac application.
    Example from Pages to Logos Bible Software.

    Feature not available.
    Hyperlinks and bookmarks are used in documents that will be viewed onscreen, either as HTML files or as Pages documents. You can add hyperlinks to jump to another page or to open an email message or a webpage on the Internet. Use bookmarks to mark passages in the document that you want to refer to as you work.
    This I found in the Pages User Guide, downloadable from your Pages Help menu, on pagge 110.

  • Open portal from a link in Word

    Hello,
    I currently have a strange issue.
    First the scenario: I have a SP17 portal, inside the portal I have an ITS (6.20) iView running an EWT. Inside this EWT I have the option to click a button which opens a Word document in a new Window. Inside this Word document I have a link that links back to the portal looking something like: http://portal.domain.com:50000/irj/portal?navigationtarget=...
    So basically I have 3 windows:
    1. Original portal window
    2. Word opened from portal and hence runs in the same session
    3. New window showing new portal content and also runs in same session
    All these three windows runs in the same session and hence share the same MYSAPSSO2 cookie.
    If I do this on a computer with Office 2000, clicking the link in Word just opens a new window and showing what I want in the portal. With the same user in window 3 as in window 1.
    If I use Office 2003, the portal presents the user with a portal logon page. But now the strange things happens. If the user presses F5 in this new window (window 3) the user gets directly access to the content, as supposed.
    How do I get rid of this annoying and unnessecary logon page? Usermanagement is pretty much left as default, and all iViews and roles uses the "default" authentication scheme.
    Best regards,
    Thomas Mouritsen

    Hi Thomas,
    At least this kind of issues with office documents has a long history. Even if the exact scenario you are describing is not listed, check out SAP note 549610 - maybe it helps also in your case.
    Another approach to understand what happens is to use some tool like HTTPWatch to see what's the difference between the first and the second (refreshing) request to window 3.
    Anyhow, I wouldn't wonder if that helps to understand the problem - but not to solve it. But in this case, just open an OSS message with your gathered knowledge about the issue and maybe the note given above will be extended...
    Hope it helps
    Detlev

  • How do I add a two word phrase to index

    I’m trying to speed up the process of adding Latin names of plants and animals to an index using Indesign CS4. These consist of two word phrases (genus + species) which need to be put into the topic level 1 and topic level 2 boxes of the New Page Reference (Index) dialog. Using Ctrl 7 to invoke the dialog just puts whatever is selected into Topic1 and using Shift+Ctrl+Alt+] adds a ‘proper name’ index entry (Surname, forename) which is no good. When the information has been entered, a simple nested index can be produced, sorted by  genus and then species.
    I’m used to programming using vb in MS Office but am totally new to javascript and this has taken two days to get this far. The first problem is that if the user only puts an insertion point into the first word (genus) I can’t figure out how to move to the second word (species) in order to save it to a variable.
    So I have:
    var myTopic1 = "" ; // topic level 1, i.e. genus
    var myTopic2 = "" ; // topic level 2, i.e. species
    myIP = app.selection[0] ;
    myTopic1 = myIP.words[0].contents ;
    This works on a insertion point in any word, or if a phrase is highlighted will take the first word.
    Is there a simple way of copying the second word after the insertion point to myTopic2? I’ve tried various methods but can’t get anything to work. I thought it would be a simple matter of adding 1 to the index of the containing paragraph or story.
    I’ve got round this in a very long-winded way by asking the user to select the whole genus+species string, then working out the position of the dividing space and reconstructing the genus and species character by character:
    var myString = "" ; // user-selected string: genus + species
    myString = myIP.contents
    myStringlen = myIP.contents.length
    var xposn = myString.indexOf(" "); // gives posn of the (first) space character within selected string
    var yposn = 0 ; // start of the string
    myTopic1 = myString.charAt(yposn) ;
    while (yposn < (xposn-1))
    myTopic1 = myTopic1 + myString.charAt(yposn+1) ;
    yposn++ ;
    while (xposn < myStringlen)
    myTopic2 = myTopic2 + myString.charAt(xposn+1) ;
    xposn++ ;
    // show results:
    alert("Topic1 = " + myTopic1 + ". Topic 2 = " +myTopic2) ;
    So at this point I need to figure how to invoke the New Page Reference dialog with Topic1 and Topic 2 filled in? I would like the option of overriding the character format of the page reference ‘Number Style Override’, so would prefer to conclude the script with the dialog left open. Can this be done using script, or do I need a custom dialog? Alternatively it would also be good to just automatically save Topic1 and Topic2 and insert the index marker at the selection point without invoking any dialogs. I’m really struggling to get anywhere with this, can someone please help! Many thanks. Sorry for the long post.

    John,
    It can be confusing initially, but JavaScript and InDesign's object model will soon make sense. What you want to do can be done with this script:
    w1 = app.selection[0].words[0].contents;
    w2 = app.selection[0].words[1].contents;
    doc = app.activeDocument;
    if (doc.indexes.length == 0){
        doc.indexes.add();
    species = doc.indexes[0].topics.add (w1).topics.add (w2);
    species.pageReferences.add (app.selection[0], PageReferenceType.currentPage);
    Select genus and species, then run the script.
    It's not possible (I don't think) to open the New page Reference dialog. Do you want to apply the number style override to all page references? If that's the case, don't. Apply the character style to the page numbers after the index has been generated, or better, set it in the index paragraph style.
    If you want to apply the number style override only to some pages, you can do as follows. Before selecting genus+species, prefix the genus name with e.g. #. That symbol tells the script to add an override. The script will strip the #, create the page reference, and add the override. You need to tell the script somehow which character style to use for the override.
    Peter
    Edit: Jump beat me to it, and gives you a different method to get your two words. Spoilt for choice!
    P.

  • Acrobat 9 Pro: Links to Word TOC and cross references are lost

    I'm testing Acrobat 9 Pro and while it successfully creates a PDF from Word 2003 with bookmarks, all my TOC and internal page reference links are lost.
    I have triple checked the conversion settings from the Adobe PDF menu option in Word, and the "Convert cross-references and table of contents to links" check box is definitely selected.
    I used the same Word document on another machine with Acrobat 6 Pro installed - and the TOC and cross ref links were created successfully. As far as I can see the Adobe PDF settings in Word 2003 on both machines are the same - the only difference is that one uses Acrobat 6 Pro and the other uses Acrobat 9 Pro.
    The only setting in 9 Pro I turned off was the 'enable accessibility tagging' one; it's also turned off in 6 Pro. The remaining settings are the default.
    A clickable TOC and internal links is essential for my clients who often have 400+ page documents.
    Anybody have any suggestions? Or can anybody confirm that they do/don't get the same behavior in Acrobat 9 Pro?

    Thanks Abhigyan - your test PDF worked fine for me.
    This is what I've done today:
    1. Checked for all instances of pdfm*.dot files and removed any that were lurking in old Application Data and Microsoft Office folders.
    2. Deleted all Acrobat 5 and 6 folders and subfolders still lurking in Program Files.
    3. Used Add/Remove to delete Adobe Reader 8 and its updates. I figure I can always install Reader 9 if I need it as a separate app.
    4. Checked that everything was gone using the Windows Installer CleanUp utility (it was).
    5. Restarted my machine.
    6. Turned off my anti-virus software.
    7. Did a search for any pdfm*.dot files - found one only in the current Microsoft Office folder and left it there.
    8. Reinstalled Acrobat 9 Professional.
    9. Opened my test Word 2003 document.
    10. Checked all the Acrobat conversion settings and left them as the defaults.
    11. Converted the doc to PDF and checked for internal links. Yes! The TOC links worked! But my joy was short-lived as the page link didn't work...
    12. Tried various other conversion settings based on some suggestions from Lance in first level Adobe Support yesterday - still no page link. And I also lost the TOC links when I cleared the Enable Accessibility check box on the Settings tab of the conversion settings.
    13. Checked the Edit > Preferences > Convert To PDF settings for Word in Acrobat 9 - add bookmarks and add links are both selected (default).
    14. Used Acrobat 9 to create the PDF (File > Create > From File) hoping that this might might a difference. Nope. No TOC or page links.
    15. Changed conversion settings back to default via Word 2003, and created a PDF from a longer document. Again the TOC links worked, the URLs worked (they always did), the bookmarks worked (they always did too), but the none of the internal page cross-reference links worked.
    So my summary is this:
    * I can only create TOC links *if* Enable Accessibility is turned on, but I have always turned this off in earlier versions of Acrobat as I don't need it and it made the process of creating a PDF from a long document incredibly slow - I'm wary of using it!
    * I cannot get internal page links to work at all, no matter which method I use to create the PDF (from within Word or within Acrobat), and no matter which conversion settings I select.
    I really don't know what to try next. Manually creating links for what could be hundreds of cross-references in a single document is NOT an option, especially as I have many of these long documents.
    Any further suggestions?

  • Acrobat 8 Pro-how do I search 1000's of pdf's & yellow highlight all occurrences of 12 words/phrases

    my computer: windows xp pro svc pack 3, dual processor, 2 gig ram
    software: Adobe Acrobat8 Pro. Problem: I have 8,000 1-2 page pdf's in (1) directory, that are all located within 5,000 sub-directories. All were converted by Acrobat fm *.txt docs in the same directories, so all are ocr text searchable, but the time to search all docs and manually highlight each (frequent) occurrence in thousands of docs, then repeat the process for the next 11 words/phrases will take forever.
    If anyone knows how to batch process search for multiple words/phrases AND have Acrobat automatically highlight and index each occurrence, that would be awesome and greatly appreciated.
    desones

    Hi David, I've developed a script that does this (well, it does it for a single document, but can easily be used for multiple ones using a batch process, and the dialog boxes can be replaced with a pre-defined piece of text).
    See here for some more info: http://try67.blogspot.com/2008/11/acrobat-highlight-all-instances-of.html
    and contact me by email to discuss it further.

  • Patch/firmware to add dynamic host link with words for WRT160N?

    Hi!
    is there anywere patch or firmware that can add another option DYNAMIC to the WRT160N (now i have v1.02.2) so i'll able to add link with words not numbers?
    thanks!

    I am afraid, "There is no such Patch"...

  • How can I script moving paths from one file to another?

    Hello. I have 1 image with various color correction layers. The other is the exact same size but only contains paths. How can I script moving paths from one file to another? Thanks, in advance, for any help you can offer. Thanks!

    Thanks! This one actually worked for me. Thanks for your help.
    http://forums.adobe.com/message/3305389#3305389

  • Linking from one PDF to another: Is there a more efficient way?

    Some background first:
    We make a large catalog (400pages) in Indesign and it's updated every year. We are a wholesale distributor and our pricing changes so we also make a price list with price ref # that corresponded with #s printed in the main catalogue.  Last year we also made this catalog interactive so that a pdf of it could be browsed using links and bookmarks. This is not too difficult using Indesign and making any adjustments in the exported PDF. Here is the part that becomes tedious and is especially so this year:
    We also set up links in the main catalog that go to the price list pdf - opening the page with the item's price ref # and prices... Here's my biggest issue - I have not found any way to do this except making links one at a time in Acrobat Pro (and setting various specifications like focus and action and which page (in the price list) to open) Last year this wasn't too bad because we used only one price list. It still took some time to go through and set up 400-500 links individually.
    This year we've simplified our linking a little by putting only one link per page but that is still 400 links. And this year I have 6 different price lists (price tiers...) to link to the main catalogue pdf. (That's in the neighborhood of 1200-1500 double clicking the link(button) to open Button Properties, click Actions tab, click Add..."Go to page view" , set link to other pdf page, click edit, change Open in to "New Window" and set Zoom.  This isn't a big deal if you only have a few Next, Previous, Home kind of buttons....but it's huge when you have hundreds of links. Surely there's a better way?
    Is there anyway in Acrobat or Indesign to more efficiently create and edit hundreds of links from one pdf to another?
    If anything is unclear and my question doesn't make sense please ask. I will do my best to help you answer my questions.
    Thanks

    George, I looked at the article talking about the fdf files and it sounds interesting. I've gathered that I could manipulate the pdf links by making an fdf file and importing that into the PDF, correct?
    Now, I wondered - can I export an fdf from the current pdf and then change what is in there and import it back into the pdf.  I've tried this (Forms>More Form Options>Manage Form Data>Export Data) and then opened the fdf in a text editor but I see nothing related to the documents links... I assume this is because the links are 'form' data to begin with - but is there away to export something with link data like that described in the article link you provided?
    Thanks

  • In Pages 5.0.1. is there any way to link one pages document to another pages document.  If so, How?

    Is Pages 5.0.1 is there any way to link one Pages document to another Pages document?  If so, Please, How?

    Well, you could trade it in for a white one! 
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."

  • How can I convert a pdf document written in the Cyrillic (Russian) script into a MS Word document in the Cyrillic script?

    I wish to convert a pdf document using a very small font from Cyrillic script into an MS Word document likewise using Cyrillic script. Then I could zoom up the size of the pdf document's script. Is there any way  this can be done?
    Julyan Watts, Hungary

    Why can't you just zoom in Adobe Reader?

  • How to switch from a word doc to another using a keyboard shortcut?

    how to switch from a word doc to another using a keyboard shortcut?

    Cmd+tilde to switch between open Word documents, or
    Cmd+tab to switch between open applications, if that's what you are after?

  • Link to word doc in Mx7

    We just moved up to MX7. I have some stagnant word documents
    attached to my site. Now when people click the link to open them,
    they get gooblygook before the text. Also all formatting (bold/etc)
    is gone. Why is cf not just pulling this up to open? Can I not just
    link to a word doc or do I have to convert it to a pdf/other
    format?
    Thanks,
    J

    We have no such problem with our links to word documents in
    MX 7. Can
    you provide some pieces of your code?
    If you are just doing direct links, there should be no
    trouble, ie.
    <a href="a/path/to/a/word/doc/file.doc">Open this word
    file</a>

  • Link/RE-link to word docs with form fields?

    Trying something new, and when I took the InDesign 2 day class the instructor was not very familiar with linking to word docs, she just never used the feature.
    So, I have multiple contributors who will onlly work in word. I am trying to set up a template/form for them to fill in that I can link to my .indt.
    I have the styles set up and matching, and I'm looking for a way that I can lock everything but the areas where they need to fill in information. My plan is to do this by making a form in Word with text fields. Will this transfer over to the InDesign file when I relink? If not what is an alternative solution using Word with out having to copy and past all the time ?

    Ohhh k.
    OK Yes this is possible.
    I do mean for it to link, the content is dynamic I need the technical people to be able to edit content before I get it. The point is to have multiple contributors working in word (absolutely must be word), creating new content that can be fed into indesign relatively automatically while preserving the InDesigns styles applied to certain text frames.
    It does need to link back to get content updates so I have this option turned on in the general preferences to allow this.
    The word documet is set up, as follows:
    Form fields are created, along with their respective titles or headings. A style/structure element is applied. The style doesn't have to match what is in indesign but it is helpful.
    Click the text box and got to "Place"
    Select the document and select the "Show Import Options"
    Under import options select "Preserve Styles and formatting..." Then Select the "Customize Style Import" radial and click style mapping. I tried doesn't this with the Automatic Import and it didn't work properly, custom mapping will identify the right information to style while overiding the actual style information from Word and instead uses the InDesign Style.
    So... not necessarily a job for InCopy, though I realize that would be better, working in for a Microsoft Partner Network Gold Certified Partner, it would be impossible to get everyone to switch over to InCopy.

Maybe you are looking for