How to add links in FrameMaker that show up unchanged in PDF

When I add a Hypertext marker (newlink <linkname>) to a Frame 8 doc, then make a PDF, the link shows up in the PDF in View>Navigation Panels>Destinations, but the link is re-named from "test1" to "M8.newlink.test1".<br /><br />How can I add hypertext links in FrameMaker that show up unchanged in a PDF?<br /><br />Thanks.<br /><br />best,<br />Paul

I don't think you can force the links through unchanged. FM adds the extra info so it can tell the difference between targets that have identical names but came from different files in the book. I also think your example is missing one of the arguments. A typical newlink marker for me comes out as M7.8.newlink.test1
The first argument can be Mn or Fn, where:
Mn indicates a Marker in the nth file in the book (7 in this case).
Fn indicates the First page of the nth file in the book.
The second argument, which is numeric, indicates the marker type: 8 for hypertext marker, 9 for cross-reference marker.
The last argument (which includes the "newlink" text) is the mangled marker text, in which any periods, underlines, and colons are deleted, and all spaces are then replaced by periods.
newlink t.e_s:t1 becomes
M7.8.newlink.test1
FM adjust both links and targets in the same way, so they both match up in the final PDF document. It's just the way it is. If you're using the targets for other things then you'll just have to adjust those other things so they look for the finished targets in their final syntax.

Similar Messages

  • How to add a small icon that shows up in navigation toolbars of browser window?

    Silly little question and I'm not even sure what it's called, but I'm trying to (create and) add a tiny graphic icon that shows up in browser windows toolbars like this:

    Thanks. I knew that.
    Found a good tutorial here: http://www.geckodesigns.com/tutorial-dreamweaver-favicon.php

  • How to completely delete the apps that showed as purchased in the apps store.

    How to completely delete the apps that showed as purchased in our apps store.

    You can't permanently delete any item from your purchase history, all you can do is hide them via your computer's iTunes so that they won't show in the Purchased links : http://support.apple.com/kb/HT4919

  • How to add a graphic watermark that is bigger than the photo?

    How to add a graphic watermark that is bigger than the photo?
         Basically I want to add a watermark that is a border, like "outside stroke" so that it doesn't clip the photo.
         Upper, left and right side are 10px and on the bottom is my signature that is 40px high. I know how to do this in Photoshop, but can't figgure it out in Lightroom.
         The inset function with negative numbers doesn't work, because it only export to the size of the exported image, instead it should resize the image with those 10px up, left and right and 40px on      the bottom.
    My bordes look like this either one of the two can be used, and if you scroll down you will se how the end result should look like.
    And below is what it should look like, so that Lightroom doesn't clip the photo.

    Are you sure the focus of your piano roll is on the right track? Are you zoomed in/out enough?

  • How to add linked button in grid?

    Hi,
    Does anyone know how to add linked button in a grid? I can't find it but i saw someone ask similar question but seems none of them works.
    Thanks a lot!
    P.S. For some reason, i can't use matrix because the data is from a SQL query.
    Lan

    Hi,
    as far as I know it is not possible, since this adjustment is made for the whole column. I have created a grid and I open the shown document by double clicking the row header. In the grid I can see if it is sales or purchase and so I use a workaround by opening the specific system form (e.g. sales invoice) in find mode and search the document by document number (also shown in the grid).
    Sample:
    oSBOapp.ActivateMenuItem("2053"); //sales invoice
    oForm = oSBOapp.Forms.ActiveForm;
    oForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE;
    oEdit = (SAPbouiCOM.EditText)oForm.Items.Item("8").Specific;
    oEdit.Value = Convert.ToString(dNum);
    oForm.Items.Item("1").Click(SAPbouiCOM.BoCellClickType.ct_Regular);
    By the click event, you get the specific row number. Hope it helps...
    Regards
    Sebastian

  • How to create a popup window that shows detail information when press submi

    hi,all
    how to create a popup window that shows detail information when press the submit button ?I mean,when I press the button "Sumit"there will appear a popup window that shows the detail information you typed before.it means are u sure to submit,it is like some confirmation window.
    how to do achieve this ?help plz .
    best regards
    hlee
    Edited by: hlee on 2011-4-15 上午1:26

    hey,vee
    thanks for your response,but i had already read this thread before i put up a new question.any way,thanks.
    best regards
    hlee

  • How to add links in the detailed navigation area of the navigation panel

    hi everyone,
    I had developed 4 iviews. 2 of those iviews i added to 2 different pages. And the 2 pages added to workse and assigned a role. i assigned this role to user. and it is working fine.
    i want to add remaining to iviews as links.
    how to add the links in the detailed navigation area of the navigation panel.
    regards
    sunil kumar.ch

    Hi sunil,
       Create a JSPDynPage component(C) having 2 hbj:link whose hrefs point to these 2 iViews(A and B). U can get the href of the iView by previewing it(for A and B). Create an iview from the par component (C) and add it to the DLN so that it shows the links to ur iViews(A and B). U can make the Show Tray property of this iView (C) to false.
    Regards,
    Harini S

  • How to add link and image in oaf iprocurement stores page?

    Hi Every1,
    I have requirement to in iprocurement stores page. Already there are certain links ( a meaning full image+link ), by click on image or link it will take you to the
    required page.
    I need to add one more like that.
    How can i do this ?
    I know thru personalizations we can add links to the page, but how can i add image to that link. so that click of anyone will take to the req page.
    Thanks,
    Arun Peddi

    Hi,
    Here is one way of putting an image in the header:
    <fo:layout-master-set>
        <fo:simple-page-master master-name="my-page">     
          <fo:region-body margin="1in"/>
          <fo:region-before extent="1in" background-color="silver" />
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="my-page">
         <fo:static-content flow-name="xsl-region-before">
             <fo:block height="150px" width="1024px" background-color="white" >
                 <fo:external-graphic src="http://localhost:9000/web-determinations9000/images/Header.jpg">
                 </fo:external-graphic>
            </fo:block>
        </fo:static-content>
        <fo:flow flow-name="xsl-region-body">
        </fo:flow>
      </fo:page-sequence>One good XSL:FO refernce: http://www.learn-xsl-fo-tutorial.com
    Hope this helps.
    Thanks,
    Aakarsh
    Edited by: aakarsh on Apr 6, 2011 6:40 AM

  • Mail, how can you remove an image that shows up in the header?

    I have no idea how this image got where it is, but I would like to remove it. When I open Mail, I see in the address area of the email as it displays in the message viewer, to the very right of that area, there is an image, that I have no idea how it got there or how to remove. The following is a link (I think) Mail/Users/alaska_juliens/Desktop/Picture 7.png ...... that shows what I am talking about. I have gone through my signatures and made sure that image isn't in there and it isn't. Please help, it is driving my husband nuts, we would love to change the image to his company logo if possible, but we don't know if that image even shows up when others receive email from us or not (we email ourselves and it is right there in the address header of the email). Thank you for your time and help.
    Mail/Users/alaska_juliens/Desktop/Picture 7.png

    Typically what shows up there is the address book picture for that contact. If they attach an image it will be added to the address book.
    So go to the contact in address book and change or delete the image.

  • How to create custom splash screen that shows loading %?

    I'd like to add a splash screen to my app. that shows the loading as a percentage.  I have flashbuilder 4.6.  How can I do this?

    You might need to consider adding your child elements in application manually. Displatch a new event back to the application when the child is created (from creationComplete) and update progress bar.

  • How to Add Link Some Text in RichEdit Control in MFC

    I need to add some Text with Link to RichEdit, thats all.
    for example,
    my String is,
    line 1 : PASS
    line 2 :  FAIL
    line 3 : PASS
    line 4 : FAIL
    line 5 : FAIL
    now i want to add this String into RichEdit. and add a Link to Only FAIL text. when i click the FAIL Text(ie, line2,line4,line5) it show some message using Message Box or AfxMessageBox.

    I decided to give it a go and wow it was way harder than I thought it should be.  Here is what I ultimately did. (you can try playing with ITextDocument2, ITextRange2::SetURL, but I didn't get that to work like I wanted.  I finally resorted to
    directly injecting RTF into my RichEdit control.  Here is a brief example (there is a little MFC in here to save time, but the relevant stuff is pure Win32 and the MFC is trivially convertable to Win32).
    m_rich.Create(WS_VISIBLE | WS_CHILD | ES_MULTILINE, CRect(10, 10, 200, 200), this, 1000);
    // TODO: Add extra initialization here
    m_rich.SetWindowText(L"This is a test ");
    m_rich.SetSel(-1, -1);
    m_rich.SetEventMask(ENM_LINK);
    std::string dataStr = R"({\rtf1{\field{\*\fldinst{ HYPERLINK http://example.com }}{\fldrslt{DisplayText}}}}.)";
    std::list<char> dataList(dataStr.begin(), dataStr.end());
    EDITSTREAM es = {
    reinterpret_cast<DWORD_PTR>(&dataList),
    0,
    [](DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb) -> DWORD {
    auto &list = *(reinterpret_cast<std::list<char> *>(dwCookie));
    *pcb = 0;
    while (*pcb < cb && !list.empty()) {
    pbBuff[*pcb] = list.front();
    list.pop_front();
    (*pcb)++;
    return 0;
    auto r = m_rich.SendMessage(EM_STREAMIN, SF_RTF | SFF_SELECTION, reinterpret_cast<LPARAM>(&es));

  • How to add links and rollovers from an exported Edge Reflow HTML in Dreamweaver?

    Hi,
    Thanks to the very helpful community I have found the way to get my HTML file from Edge Reflow.
    Upon opening the HTML file in Dreamweaver, the CSS, Java scripts are wonderfully linked. However, I am not experienced enought to manipulate the divs to get a rollover or add links to the layout.
    Eg. Sticky Navigation bar on the top, how do you add rollovers and links?
    All help is very much appreciated.
    Thank you for your help in advance!

    Hi Chris,
    your plan for Reflow sounds good. Versioning is probably the most adaptable way to integrate it with the rest of the workflow.
    What I think is still missing, on the simple side, is link creation and management inside Reflow.
    Of course, considering you have just introduced multiple pages, this feature shouldn't be far...
    About Dreamweaver, I've been a faithful user for years but now it's definitely old for some uses.
    Just to say, if I open the responsive page I just created in Reflow with DWCC in Live View, something basic as background gradients are completely missing. Well, I'm not going to use it for this kind of work.
    Do you know for what DW is still a great tool? Email Newsletters, since they still have to respect old standards that no one else uses anymore.
    For all the rest I definitely prefer the editor/IDE way: SublimeText and other tools.
    They're faster, more apt to the task and, similarly to the Adobe Edge line of products, made with the same technologies they help to work with.
    In the future, who knows... Maybe, you should put in development a "Dreamweaver Edge" version and drop the old one, a little clunky even if recently revarnished  ;-)

  • How do I make apples loops that show up in the loop browser

    How do I make apples loops from my audio files that show up in the loop browser, and where do they reside on the computer so that I know they are there.

    Refer to Logic manual page 848 where it is well explained.
    Regarding the path you can search:
    localdrive\Users\your_ user_account\Library\Audio\Apple Loops\User Loops
    !http://img59.imageshack.us/img59/4967/aglogo45.gif!

  • How to add link to specific page in another PDF

    I'd like to create a link within a PDF to a specific page in a different PDF. As far as I can tell, the Create Link tool will only allow me to open another PDF on page 1. I know you can link to another page in the current PDF, but I need to link to a separate PDF. I have also found info on mechanisms for opening to different pages, but these are for opening using browsers or code.
    So, is it possible to link create a link in a PDF to a specific page in another PDF?
    Thanks for any suggestions.
    - John
    PS - I'm using Adobe 7.0 Professional.

    Try this...
    You can link to a specific page in a specific PDF from a bookmark. You navigate to the new view (page of a PDF) when creating the bookmark.
    When you want to do that with a link (as in selected text in the body of the PDF) you have to do it in two steps. Use any file open to create the link, then edit the properties of the link, select the Action tab, and change the action to Go To A Page View.
    That's how it works in Acrobat 8, but I'm betting it's the same in 7.
    Bear

  • How to add link button in Query generator

    Hi,
    I am trying to add link button in Query reports. While the query is for system table it automatically gives columns with link button  but how to do this for user Tables.

    Hi,
    Even by standard, this is not possible only when you using UDO.
    You can create your form with Matrix, and use FlushToDataSource Method to load large amount of data inside. Now you can program the linked button click (et_MATRIX_LINK_PRESSED) by columns.
    Regards,
    J.

Maybe you are looking for