Problem in templates with hyperlinks to bookmarks

Hi. I'm using Robohelp X5. I have a template with a hyperlink
in the footer, to link to the top of the page. The link works fine
in topics that are in the root HTML Files folder (in the Project
Manager tab) but it doesn't work in topics that are in sub-folders.
The hyperlink target is being prefixed with "../" to account for
the extra level. I have been asked not to use Javascript in the
help, so need to use html. Does anyone know of a way to prevent the
link being altered in the sub-level topics, or some other solution
to the problem?
I can't ask all the authors not to use folders to organise
their topics, as some of the projects are large and they also use
the folder structure when generating the TOC. I'd also rather not
have to advise them to create a different version of the template
for each folder in the topic structure, which is the only other way
round it I can think of. Any advice would be greatly
appreciated.

Hi again Kat
Hmmm, quite a conundrum you have there, eh?
Well, there is one other possibility. Similar to the number
42, you probably won't like it much. But here goes anyway.
Assuming you are the person who has final say over the
project, meaning that you are the only one that generates and
distributes and the others are simply contributors, you could use
something like ReplacEm or FAR to perform a small post generation
process of performing a search and replace. You would search only
the folders for the desired string looking for ../# and eliminate
the ../ or possibly even ../../ or ../../../ depending on how many
folder levels you have.
Besides that, I'm about out of ideas.
Sincerely... Rick

Similar Messages

  • Cannot Export PDF with Hyperlinks and Bookmarks

    August 1, 2008
    Hi Everyone,
    I've recently upgraded to InDesign CS3. I opened a 40 page document that was completed in InDesign CS2. When I try to export to a PDF (with include hyperlinks and bookmarks) the program quits once it reaches the 5th page.
    I've tried exporting without hyperlinkes and bookmarks checked and PDFing works fine. I had no previous PDFing issues when working in CS2.
    Any suggestions/tips/guesses would be appreciated.
    Thank you,
    NB
    Windows XP
    InDesign CS V.5.0.3

    Hi! I need help w indesigns hyperlink...
    I am working on a long document and have 5 files, I was able to use hyperlink on each one that way the reader could jump fr one file (or page) to another. The hyperlink worked perfectly on PDF. Now I need to merge these five PDF's into 1 PDF file but the hyperlink that I have created on individual files doesnt work in a combined PDF. Is there a run-around on this? Any suggestions? I'm just new in indesign and need inputs. Thanks!
    Im using Windows XP and CS3.
    Nelle :)

  • Problem uploading templates with liquid layouts and dreamweaver cs6

    Hi
    I have developed some templates in Dreamweaver CS6 and Liquid Layouts
    However when I want to preview them in a browser, they come out blank (No Data at all)
    I have tried this without Liquid and works fine, minor bugs that can be fixed like background image not visible
    It seems the problem its at the BC system
    Will appreciate help on this matter
    Thanks

    You should not be using Liquid in product sites, especially in templates since the whole liquid code breaks and does not render in several places.
    DW has no features to support liquid rendering either yet.
    It is something that is in Alpha.

  • I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    Is the menu bar missing (the one containing File, View, Edit etc)? If it is, the following link shows how to restore it - https://support.mozilla.com/kb/Menu+bar+is+missing

  • PDF from PostScript file with hyperlinks/bookmarks

    Is there a way to include hyperlinks and bookmarks when printing to Postscript file.
    Direct Export to PDF creates a huge file size so I need to go the PostScript/Distiller route.

    Would it not be possible to use the famous Acrobat Replace Pages featurebug/bugfeature here? (Hyperlinks on, and bookmarks to pages do not get replaced when you replace those.)
    Something like:
    1. Export to PDF.
    2. Print and Distill.
    3. Replace all pages in the document from step 1 with those from step 2.
    4. Done.

  • Problem with Hyperlink  in JEditorPane!!

    hi all!
    I have some problem.
    I create html page with hyperlink to myProgram.jar and when i open this html page in JEditorPane and click on hyperlink i have the some text but my program don't run.
    How write HyperlinkListener for run the my program and setUrl for open other html pages.
    thanks!

    In the future, Swing related questions should be posted in the Swing forum.
    But, there is no need to repost the question because you can just read the JEditorPane API to find an example of how to write a HyperlinkListener.

  • Problems with Hyperlinks when exporting to EPUB

    I've been trying to export a CS5 indd to Epub (using corEpub script -http://www.teusdejong.nl/indesign/-), but there seems to be some kind of conflict with Hyperlinks (there's 6000 of them): when they are near to a footnote reference, the text of hyperlinks (and some text surrounding it, don't know the criteria) just disappear and the reference doesn't work. Any ideas about what could be happening?
    (Sorry for my english)

    I just came across this same problem -- similar but not exactly the same.
    Text in a table does not print properly when text is superscripted.
    This is a problem since we have a French invoice that has a fair bit of superscript. I tried to work around by decreasing the font size and increasing the baseline, but this did not work.
    I'm using Pages 5.1 and Mavericks.
    Anyone have any ideas????

  • Problems with hyperlinks in dynamic text

    Hi,
    I have a dynamic textbox on the 3rd level of a flash movie. The textbox has some hyperlinks for which I used this AS2 code as a test:
    textbox.html = true;
    textbox.htmlText = "<a href=' http://www.adobe.com' target='_blank'>Adobe</a>";
    When I test the scene it works well on all levels apart from the root level. When I test the whole movie, the link does not respond. On rollover the mouse converts into a text cursor, and I have to click several times, until randomly a hand comes up and the link opens. I don't understand why on all sublevels (in the movieclips), the link works perfectly (on rollover mouse becomes hand and click loads URL int browser), but not on the root level. Btw, I placed the movie with the textbox on top, so there is no layer above that in the root timeline. Please help!!!
    Thanks.

    Thanks for your response dalcde. However, in my dynamic textbox I have a list with more than 50 different items with different links, and using the HTML tag seems more convenient.
    I experimented a bit and found out what causes the problem:
    The parent movie clip of the movie clip with the textbox has a mirrored reflection attached to it, for which I use this code:
    import flash.display.*;//importing the bitmap class
    var bmd:BitmapData = new BitmapData(860, 330);//definition of a variable for the target bitmap and assigning values
    link_ref.attachBitmap(bmd, 1);//attaches target bitmap to movie clip (reflection)
    link_ref.setMask(link_mask);//sets mask over movie clip (reflection)
    this.onEnterFrame = function()
        bmd.draw(link_contents);
    When I switch that off, the link works fine when testing the movie. This is a bit weired cause when I test the scene with the reflection (2nd level after root) the link works fine. The problem only occurs when I test the movie (level 1). Anyways, switching off the reflection is obviously not an option as all the sites on my website have reflections. Is there a workaround to this? I was never aware that the bitmap class could interfere with hyperlinks.
    Thanks.

  • Custom report templates with the help of BI Publisher.

    Hi All,
    I have created custom report templates with the help of BI Publisher it is working as we excepted.
    refered : https://blogs.oracle.com/kyle/tags/reports
    But our requirement want to change the color of heading and include filters in output report, It is possible, if yes pls share you comments?
    Best Regards
    Pradeep

    how silly of me!
    just restarting the tomcat sorted the problem!!!

  • PA_CONTRACT_XSLFO: How to invoke a RTF-template with related data template

    Dear Reader,
    actually I want to extend the standard Document Type Layout for a Purchase Agreement Contract with additional data from approved supplier list (ASL).
    Therefor I have created a RTF-template and a data template with the needed sql-statement. For testing I put this in a standalone concurrent programm and it works fine (result was a blue table with all data rows).
    Next step for me was to invoke the RTF-template into the PA_CONTRACT_XSLFO template for extending the Document Type Layout for my Purchase Agreement Contract. So I put the neede invoke-statements
    <xsl:import href="xdo://XXOC.XX_RTF_TEMPLATE.de.00/"/>
    and
    <xsl:call-template name="XX_RTF_TEMPLATE"/>
    into the XSLFO-template. Also I extend the RTF-template with the define template statement
    <?template:XX_RTF_TEMPLATE?>
    So all seems to be fine.
    As result I get the standard document for Purchase Agreement Contract with the additional blue table from RTF-template BUT WITHOUT DATA !
    From my point of view there is no execution of the sql-statement in data template. But I dont know why.
    Do Oracle support a combination of XSLFO-template with data template?
    [XSLFO-template] with related [XSD-data definition]
    calls [RTF-template] with related [data template (with included sql-statement)]
    Thanks for your help.
    Best regards
    Mario.

    How to call a rtf template from another rtf template by passing a value try in main template create hyperlink of url with parameters for another template
    http://bipconsulting.blogspot.ru/2010/02/drill-down-to-detail-or-another-report.html
    When user pull a quote report from siebel this new rtf template should attach to the quote at the end.it'll be only another report
    IMHO you can not attach it to main. it'll be second independent report
    you can try subtemplate but it's not about rtf from rtf by click
    it's about call automatically rtf subtemplate from main rtf based on some conditions
    for example, main template contain some data and if some condition is true then call subtemplate and place it instead of its condition

  • I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the bad template with a blank.

    I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the unwanted template with a blank. It was previously possible to go to MY TEMPLATES and remove the unwanted templates. I don't if this issue is before or since installation of 10.8 (a nightmare in my case, which led to significant failure issues).  And because I haven't tried to remove templates since finally managing to install 10.8 (now at 10.8.4), I don't know if this is typical of the newer OS or a problem. I've been a Mac user for more than 25 years, but I think I'm nearing the end of the road. By the way, I've never needed to do this before because the manuals always offered an answer... they don't seem to do that anymore. In any case, I don't know how this works... I'd prefer an email reply if that's possible. But that would probably be too easy, and I don't know how to get a reply.

    Thanks, I appreciate the help.  I think this is one of the problems Apple is creating by changing the OS so often. I had fomer colleagues at [a major aerospace contractor] who told me that so many original files were ultimately lost because of the deadly change in the "Save As" operation that they are now afraid of every OS update. Apple has badly damaged their support base with that very prominent company (they won't update now until they've fully examined and understand changes in the pre-conditioned nature of OS computer functions), and they are a whole lot less enthaled with Mac-related equipment/software. Can't blame them, I too used orginal files that way (as easy-to-use templates), and lost some important files before I realized what was happening (to late to revert). Companies should not have to retrain employees each time an OS gets an update, it's can be very expensive several different ways. They learned a painful lesson with that one. And because I'm now retired and don't use multiple devices, I need iCloud like I need a hole in the head... but I'm told there's no way to keep Apple out of my computer. Fortunately, because of major problems when initially installing Mountain Lion, one hold-over of the hardware/software damage I experienced was that iCloud can no longer access my computer even though everything else is working fine again. That was the only "good luck" I had as a result of that expensive nightmare.

  • Word template with web service - style and font not considered

    Hi experts.
    I'm using a word template with a web services.
    So i've added my xml tags in the template and i've tried to change the font and style but when i launch the document, what i have defined is never considered. For example if i set in a table that a line should be in Italic, when i edit the document no text is in italic ?
    Did you ever faced this kind of issue ?
    How did you manage to set you style to the xml tags ?
    Thanks in advance for your help.

    I also had similar problems but I didn't work on word template for quite a long time. But at that time I solved the problem with formating the word and not the xml tag directly.
    For example: I wrote the word lastname and formated it to for exampe, bold and italic like lastname. After thet I selected the word and applied the xml tag to that word and this worked just fine.
    Regards.

  • Templates with sound?  Resolution with 1440x1080?

    SOS. Two problems:
    1. I'm trying to save a Motion template with sound. The Motion Untitled document plays OK with sound, but when I save it as a template.... no sound. What am I doing wrong? (The sound is part of an imported QT movie)
    2. My client says he is capturing video at 1440x1080i60 29.97 fps. He wants a template at that resolution. When I create a template at that resolution, and open in FCP in a sequence at that resolution, the Motion template is squashed in the vertical direction. I've tried square pixels and 0.9 pixels, to no avail. I can create a template at 720x480 DV no problem.
    Any advice gratefully received!!
    regards, david

    #1. Correct. You'll need to sync the sound with the template in FCP. Sorry!
    #2. In your Final Cut Pro sequence- is Anamorphic Selected? In my quick test, it comes across fine, but gets skewed if Anamorphic is selected. Select the sequence in question, and hit Apple-0.

  • How to place an indesign page with hyperlinks in another indesign file, such that the links work?

    I have a page of text with hyperlinks in a master indesign file.
    I place that file into another indesign file.
    (It is like an html include file for a webpage.In this way i only have to update the file in one place.)
    But when i export the indesign file to pdf, the hyperlinks fail to work.
    They work in the original but not in the second.
    Does anyone have any suggestions?
    Abby Eagle

    My apologies. My tests were done using URLs. They function in Acrobat regardless of their state in InDesign.
    Aside to Bob: Since I had just made a PDF that worked, I mistook your "Since when" to mean since when won't a placed ID file work? I guess I was blind sided by the fact that the only hyperlinks I ever come into contact with are full URLs.
    If Abbey's situation is as I envisioned -- that the placed files are more akin to smaller graphics within the layout of a page rather than discreet pages at all -- then is this not a insolvable problem given how InDesign works now?

  • Creating Templates with API

    Hi,
    I want to create a template with PL/SQL. This is a basic tamplate, the only thing I need is to create it and then the user access it to customize it.
    I have viewed WWW_UI_TEMPLATE API, but it only has procedures that show the page of creation like "SHOW_STRUCTURED_CREATE", but doesn't has a procedure that create the template automatically.
    Does somebody know any api that do it for me, or any another way to do it ?
    Thanks a lot,
    Hengel Zambrano.

    I've created a responsibility with the fnd_responsibility_pkg.insert_row. The API runs ok, and I can even see the new responsibility in the FND_RESPONSIBILITY table.
    But the problem is, I can't see it in oracle apps using forms (that is, can't see in the Define Responsibility window and can't even assign it to a user). What could I be doing wrong?This forms select values from FND_RESPONSIBILITY_VL (which select from FND_RESPONSIBILITY_TL and FND_RESPONSIBILITY tables). So, did you verify if you have this responsibility inserted to FND_RESPONSIBILITY_TL table?
    Can you select the responsibility from RESPONSIBILITY_VL?

Maybe you are looking for

  • Can I open a excel file from labview

    I have a program who write temperature in a excel file and i want to open this file from labview .

  • How do you reset the PMU on an ibook G3?

    My man just got a refurbed ibook G3 and on the first night it went to sleep and it won't seem to charge and I've read that the PMU needs to be reset but I don't know how to do this.  Can someone help?

  • Report with summary

    I want to develop a report with the following format and have tried various ways but been unsucsessful so far, can anyone help: CUSTOMER SITE ID     FAT     PROTEIN 2000               3     6 2000               5     4      AVG.     4 5 3000         

  • Not able to print in color after changing cartridge

    Hi. Using a Mac OS X 10.6.8 with an HP Officejet J6480 printer. No problems in the past but just changed both black and white and color cartridges (new- not refurbished) and it's not working. When I look at a preview it's also only in B&W. I've tried

  • QueueId for HTTP Sender Adapter.

    Hi All: I modified the HTTP client and sending QoS = EOIO and queueid=test_queue. But I am getting an Error  : <i><b><b>Result:   <SAP:Error><SAP:Category>XIServer</SAP:Category><SAP:Code>INTERNAL.ATTRIBUTE_INITIAL</SAP:Code><SAP:P1>QUEUE_NAME</SAP:P