[CS3 JS] How To Create Hyperlinks In InCopy?

I have a client that wants to be able to author hyperlinks in InCopy, both links to named targets as well as links to URLs.
It appears that the InCopy scripting object model does not include the hyperlink-related objects from the InDesign model, even those those objects can be found in an INCX document if a link is created within an InCopy article within InDesign.
I'm trying to figure out what the best/quickest solution is given that I can't do it using scripting. I have already implemented a hyperlink creation dialog that emulates the InDesign New Hyperlink dialog.
Unfortunately, I cannot assume or require that the InCopy users have InDesign installed. If I did I could just create a temporary InDesign doc that linked the InCopy article, create the link there, then save and update the InCopy article.
Given that, I'm not sure how best to go about this.
The ideas I've come up with so far are:
1. Don't create real hyperlinks but use Note objects to capture the hyperlink source and target information. This would satisfy the client's requirement to be able to transform the links on conversion of the InCopy data to XML but wouldn't result in working InDesign hyperlinks.
2. Modify the INCX document directly to add the appropriate hyperlink objects then reload it as part of the hyperlink creation process. Ugly but should work.
3. Use XML markup in InCopy to represent the hyperlinks. I don't like this as much as the Note option because it's less obvious to authors what's going on and is easier for authors to mess up accidentally when they are editing.
4. Implement a full-on InCopy plugin. This is really beyond my current capabilities and the scope of the project.
5. Log a bug against InCopy to request that the hyperlink objects be added to the API. (Probably not going to give me a result in the time I need, even if it's an appropriate thing to do.)
6. ???
Is there some trick or back-door mechanism I've missed that I can use through InCopy scripting?
Thanks,
Eliot Kimber
Really Strategies, Inc.

I did this from the advanced menu to make all hyperlinks work. All I got were boxes around my links that are not clikcable to the web page.
Now I cannot undo this.

Similar Messages

  • Creating hyperlinks in Incopy

    I have created hyperlinks in Incopy and tested them using the hyperlinks panel. The links work. However, when I export to PDF from Incopy, the hyperlinks are not there. I noticed when exporting the PDF from Incopy, there is no option in include hyperlinks. Am I correct in assuming that you can create and test the hyperlinks in Incopy, but in order for the hyperlinks to work in a PDF, the PDF must be exported from Indesign?

    Yes, unfortunately, you are correct. :-(
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    AM

  • [CS3 JS] How to Create a Timer?

    Within InDesign I need to be able to fire a periodic process to examine links from a JavaScript script. I have my own script running in its own engine.
    I can't figure out how to create a timer that will run in the background and call the appropriate callback function periodically.
    I've created a little process like this:
    * Sleeps for waitTime milliseconds then calls the callBack function.
    function timer(callBack, waitTime) {
    $.writeln("timer(): callBack=" + callBack + ", waitTime=" + waitTime);
    if (waitTime == undefined) waitTime = 2000;
    $.writeln("timer(): sleeping for " + waitTime + "...");
    $.sleep(waitTime);
    $.writeln("timer(): awake, calling callBack");
    try {
    return callBack();
    } catch (e) {
    $.writeln("timer(): Exception from callBack.exec(): " + e);
    return undefined;
    function myCallBack() {
    return Window.confirm("Callback called", true, "Continue looping");
    while (true) {
    if (!timer(myCallBack)) break;
    And this works in the sense that my timer runs, but it runs as a blocking process, which is not what I want.
    Is there something I'm missing or is this simply not possible in CS3 JavaScript? A search on "timer" in the InDesign forums didn't reveal anything, nor did the InDesign JavaScript Guide nor the Scripting Tools Guide.
    Thanks,
    Eliot

    1. Download and install Active Page Item Developer Toolkit.
    http://www.rorohiko.com/wordpress/indesign-downloads/active-page-item-developer/
    You'll have a demo period for 20 days or a month, I don't remember exactly.
    2. Create a new document, open 'Active Page Item Developer' panel (Windows menu).
    3. Copy the script from my previous post, draw an object - e.g. a rectangle and with the object selected enter 'idle' into Event Filter field, then press Tab and paste the script into the largest field.
    You'll see an alert appearing every 10 seconds and the cursor flickering.

  • How to create hyperlink on column.

    Hi all,
    its very urgent.
    I have two pages first page like header level and secound page like lines level.
    in first page having requestid lov,find,create buttons and advance table region.
    secound page having only advance table region with add another button and save button.
    in first page, once click on the create button one requestid(header) is generated in header leval and at the same time that requestid move to secound page requestid column and user select the application name and responsibilityname and user click on the add another row button it ll add one more row with same requestid and here user again enter application name and resp name and click on the save button the data insert to two different tables.header information insert to one table and line information insert to another table.
    here my problem is in first page having requestid lov and find button. the user click on the find button all the requestids displayed in advance table region(this is only header information).once user select particular requestid and click on that requestid, it ll displays particular requestid line information to next page.
    how to create link on requestid column.
    how to achive this plz help me.
    Thanks

    Hi Mukesh,
    Thanks for replay.
    here my requirement is i have two pages in firstpage having requestid lov,go button and table region.
    once click on the GO button it ll display all the requestids(only header table information) these requestids are having hyperlink.
    one requestid(header) having multiful requestids(lines)
    once click on the particular requestid and go to next page here displays the line information.
    so i created one destinationURL, and in secound page CO process request i wrote below code.
    so plz check once.
    In CO:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String employeeNumber = pageContext.getParameter("requestID");
    System.out.println("this ia my link requestID:"+employeeNumber);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable[] parameters = { employeeNumber };
    System.out.println("this is my link serizable requesid:"+ employeeNumber);
    am.invokeMethod("initDetails", parameters);
    in AM:
    public void initDetails(String employeeNumber)
    RequestAccessDetailsVOImpl vo1 = getRequestAccessDetailsVO1();
    System.out.println("my emp number AM:"+employeeNumber);
    vo1.setWhereClause("REQUEST_ID = :1");
    vo1.setWhereClauseParams(null); // Always reset
    vo1.setWhereClauseParam(0, employeeNumber);
    System.out.println("my emp number AM1:"+employeeNumber);
    vo1.executeQuery();
    once i click on the requestid(hyperlink) in home page that requestid move to secoundpageCO and AM also.
    plz check the output.this output generated OC4J server.
    this ia my link requestID:12590
    this is my link serizable requesid:12590
    my emp number AM:12590
    my emp number AM1:12590
    But did not displays the line information in secoundpage
    plz helpme.
    Thanks
    Edited by: its urgent on Mar 19, 2012 10:26 PM

  • How to create hyperlinks in Acrobat 9 Pro?

    Hi everyone,
    Is there a way to create hyperlinks from within Acrobat 9 Pro? If so, can you let me know how? I am having a hard time finding out how to do so.
    Thank you in advance for your help:)
    Christine

    I did this from the advanced menu to make all hyperlinks work. All I got were boxes around my links that are not clikcable to the web page.
    Now I cannot undo this.

  • How to create Hyperlink dynamically

    Hi All,
    In my application , iam using one table , one of the field in that table is input field,
    when i entered data in that field at runtime, automatically that field value should become hyperlink, to show another table.
    is it possible to do, if possible please help me in this how to create field dynamically.
    regards,
    sush

    Hi Sushma,
    What I get is that at runtime, you will fill the input field with some value & wish to have the field changed to a link.
    Adding to what Armin has said, keep the input field as it is. Add a new column in the table, create the TableCellEditor of type LinkToURL (if it is a URL value) or LinkToAction (if some value).
    For LinkToURL type, set the 'reference' property to the same context value attribute as the input field.
    For LinkToAction type, set the onAction event where you call the appropriate code.
    You can also set the 'text' property as Link or bind it to this context value attribute as well.
    Hope this works.
    Kind Regards,
    Nitin
    Edited by: Nitin Jain on Mar 25, 2009 9:14 AM

  • How to create hyperlinked text in F1 help of a particular Data Element.

    Dear Guru
    I have encountered an issuse regarding to create hyperlinked text in F1 help of a particular Data Element.
    For Example what i am trying to do is ---
    If you open a particular data element say "ATNAM" in se11 you will found the below documentation available for ATNAM -->>
    DE ATNAM
    Text
    Characteristic Name
    Definition
    Name that uniquely identifies a *characteristic*.
    >> The "characteristics" comes in hyperlinked bluecolor and if we press this it linked to below --- >>
    Definition: characteristic
    Classification (CA-CL)
    Property for describing and distinguishing between objects, such as length, color, or weight.
    Profitability Analysis (CO-PA)
    I am able to make 1st part of the documentation using SE61.
    But I am not able to make Hyperlinked part of that documentaion .
    please show me some way to develop this
    Thanks & regards
    Saifur Rahaman

    HI,
    you can give the hyperlink in the documentation by going to the path below
    MENUBAR ----> INSERT -----> TEXT -----> HYPERTEXT.
    this will solve the issue
    have a good day
    regards
    sarves

  • How to create hyperlink using form

    if a user click on button then
    oulook express open for sending mail but i want to create hyperlink on it automatically.
    actually when user click then a word file created on server i want to hyperlink this file the file name is my form serial_no

    when i click on button outlook express is opening know and i can send text on body through forms
    i need it to send hyperlink on outlook express so i can open document through this link which is on outlook express file

  • How to create hyperlink in PDF?

    how do i create a live link in a pdf using Acrobat XI Pro?

    Hi Steve,
    I figured this out a couple of hours ago...however, the link does not appear with the usual underlined bright blue text, it appears with a blue rectangular box around the text, or invisible, which doesn't let the reader know that it is actually a link.
    Can you tell me how to create the "old fashioned" typical link that we are all used to seeing in bright blue and underlined?
    Thank you for your response
    Norma

  • How to create hyperlink for region

    I have page which contain two region.i want to create a link for each region. when i click the first link
    first region should display,viceversa
    Actually how to create link for region?
    Thanks and regards
    skud

    Hi Bosamiya and vee,
    Thank you very much...
    but,
    when i run my page it shows three tabs (*show all*,*region1*,*region2*).
    How to disable that show all tab?
    i want to show only region1 and region2 tabs.
    Is it possible to disable the show all tab?
    Thanks and regard,
    Skud.

  • How to create hyperlink for the messages in oneorder documents

    Hi ,
    I want to create hyperlink for the error messages that are raised for a payment request, so that i can navigate to that particular object ID mentioned in the message.

    Hi Paparao,
    But we can find the same functionality for trade promotions overlap, the messages raised when two or more tradepromotions overlap, provide us with hyperlink through which we can navigate to that particular object id.
    Regards
    Tejarshi
    Edited by: tejarshi vadduri on Apr 17, 2009 6:55 AM

  • How  to Creat  Hyperlink through    Workflow

    Hello Everybody ,
    I want   to create Hyperlink after click on that Hyperlink I want to  open  any  Site .
    Do Some Needful
    Regards,
    Sandeep Jadhav

    To create a Hyperlink in a Workitem, you need to create a container element of type 'CFX_HYPERLINK' with  your desired URL as value. Eg. 'www.sdn.sap.com'
    Now in the Text editor of workitem description call this container element in HTML format.
    Eg.
    <A href="http://&<your container element>&">www.sdn.sap.com</A>
    Thats it. Execute.
    Please let me know, if it is working.
    Edited by: srinivas g on Jul 21, 2009 7:33 AM

  • How to create hyperlink in a page with another website

    like we can link email links and hyperlinks (with other
    files) how do i make link with another website like
    in my home page i say www.indiatoday.com and i want that when
    one clicks on www.indiatoday.com this site opens
    how do i create a link using dreamweaver without having to
    code manually.

    "pandeya" <[email protected]> wrote in
    message
    news:f66jl8$72b$[email protected]..
    > like we can link email links and hyperlinks (with other
    files) how do i
    > make
    > link with another website like
    > in my home page i say www.indiatoday.com and i want that
    when one clicks
    > on
    > www.indiatoday.com this site opens
    > how do i create a link using dreamweaver without having
    to code manually.
    Select the text www.indiatoday.com. In the Property
    Inspector, in the Link
    field, type the full URL -
    http://www.indiatoday.com.
    Click OK.
    You might want to use the Help documentation for really basic
    questions like
    this..
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • How to create hyperlink in front panel like what we did in frontpage?

    I'm using labview 4.0 for mac os 8.1. and looking for a way to create web and e-mail hyperlink, anyone can tell me how to do that?

    > I'm using labview 4.0 for mac os 8.1. and looking for a way to create
    > web and e-mail hyperlink, anyone can tell me how to do that?
    You will not be making a true hyperlink as LV doesn't ahve html support
    built in. You have a number of choices to do this such as responding to
    a button and using Apple Events to invoke another program to do the
    email or web application. I was never too into Apple Events, but I
    believe there is a common Open with parameters that might get you what
    you want.
    You might also check on the internet toolkit, but I'm not sure when it
    was released relative to 4.0. And if this doesn't work for you, you
    might look at upgrading to LV7, the last supported release for OS9, and
    using SMTP for email and there is a VI to open t
    he default browser to a
    URL in the palettes.
    Greg McKaskle

  • How to create hyperlink in Html page using Java

    Hello every one
    I want to know that how can I create a hyperlink in Html page using java ?
    Let for example
    I have code like this and i want to give hyperlink to it using java.
    rember that i am creating node using this id="name" which give me multiple value. and i want to assign diff link to each name..?
    <tr>
    <td ><span id="name"></span>
    </tr>

    but i m using this code to create node in html file
    HTMLLIElement li = (HTMLLIElement)appHTML.createElement("LI");
    Text txt = appHTML.createTextNode(name);
    li.appendChild(txt);
    appHTML.getElementById("name").appendChild(li);
    this will display all name value which is coming from database,
    and i want to assign a hyperlink to it,
    I have id with name also so I thought that using id i will
    create javascript like
    function popup(id)
         if(id==1)
              var n1 = window.open("../list/name1.html");
         if(id==2)
              var n1 = window.open("../list/name2.html");
    this way i want to popup particular file if i can pass id value in this function
    so want hyperlink like
    name

Maybe you are looking for

  • 10.6.8 Freezes Mac Pro

    Guys, Hopefully someone can help! My Mac Pro has worked flawlessly for over 2 years BUT the latest 10.6.8 upgrade is creating a nightmare for me - the machine randomly hangs (not always the same program), sometimes it won't even empty the trash unles

  • Upgrading from 10.4.11 to 10.5 Finder wont launch

    I updated my G5 from 10.4.11 to 10.5 using the default install on the 10.5 dvd. Trying to restart gets all the way to bkground pattern & applications visible in the dock & the clock working but it never gets all the way to launching the desktop. Just

  • Codec for YouTube problem

    I'm having a terrible time trying to upload my movie on YouTube with decent quality. The video seems fuzzy, and on some spots even soft-focused and ghosted. I've tried different codec's, including H.264, Motion Jpeg A, Photo Jpeg, PNG. Nothing seems

  • Crystal Report Export to PDF with Group Tree Bookmarks

    Dear Forum I have created a Crystal Report aspx page with an export function of the report to pdf. So far all has been successful, except form one little annoying this. The report does export to a pdf file and it does create bookmarks based on the gr

  • Scanned image problems CS4 Mac

    I am scanning old slides and negatives and as these have been stored in the tropics many of them are damaged by what could be fungus. I have tried cleaning them without success and now I am trying to recover them in Photoshop. There is two main types