RoboHelp 8: can't display TOC content using Chrome

I just converted from X5 to RH 8. I can open a single Web page in Chrome, but when I click on any of the buttons (Contents, Index, Search, Glossary), they do not work and displaying nothing. I've scoured the boards and found Peter's 103 snippet (http://www.grainge.org/pages/snippets/snippets.htm) and applied it to no effect. What am I missing??? Thanks.

Okay, I have a fix (thanks to Tulika at Adobe) for those of you who are interested.
I understand you are using Chrome 5 to view RH 8 output. Chrome 5 has a strict security policy for html pages viewed locally (from disk and not from some web server) because of which iframes in RH 8 output fail to load. If you publish the same output to any web server and view it in Chrome from there, it will work just fine for you.
To enable local viewing of your output, you will have to disable this extra security check in chrome. You can do that by launching Chrome.exe with "--allow-file-access-from-files" option. Kindly ensure that you close all open Chrome instances and then launch Chrome with this option.
You can find more details about this security issue in Chrome at this link : http://blog.chromium.org/2008/12/security-in-depth-local-web-pages.html
Here's what I did to implement this fix and locally (and correctly) view my help in Chrome:
Create a NEW Chrome shortcut on the desktop and rename it to RH Chrome (or some such indicator).
Right-click the new Chrome icon and choose Properties.
Add the "--allow-file-access-from-files" text to the end of the path displaying in Target, as shown in the below image. Make sure you leave a space between the original string and the tag you are adding to the end of it.
Click OK to save.
If you have any Chrome instances open, close them.
To test, launch an instance of Chrome using the shortcut you created.
Go to your file system and right-click any .html file in your RoboHelp WebHelp directory and choose Open with and then Google Chrome. Please note that I had to add Chrome as an "Open with" option. Because you have your customized instance of Chrome already opened, Help will auto-launch using that instance. I'm sure there's a better way to auto-launch this from RoboHelp itself, but this was a quick and dirty test just to make sure it was working.

Similar Messages

  • In struts Can't display dynamic content using "include"?

    Hi everyone:
    I am using struts1.1. I have a index.jsp and it have a hyperlink "<html:link forward="show">Show All forum</html:link>". In my struts-config.xml there is a element:"
    <global-forwards>
    <forward name="show" path="/jsp/allarticle.jsp"/>
    <forward name="oneforum" path="/article.jsp"/>
              <action path="/article" type="lyo.hotmail.bbs.lovearticle.Savelovearticle" input="/jsp/error.jsp">
              <forward name="success" path="/jsp/loveforum.jsp"/>
    </action>
    I want that the index.jsp will redirect to allarticle.jsp when user click the hyperlink "Show All forum".
    In the allarticle there is a hyperlink "<html:link forward="oneforum">one forum</html:link>"
    The Savelovearticle is an Action class and it disply all the data from database.I using "if(list!=null){
              session.setAttribute("listtable",list);
         }".I display all the content using "<logic:iterate id="love" name="listtable">
    " tag in allarticle.jsp.
    But the Tomcat report error "can't find listtable in any scope"?
    The problem is if I change the struts-config.xml to:
    ////////////////////////after change///////////////////////////////////////////
    <global-forwards>
    <forward name="show" path="/article"/>
    <forward name="oneforum" path="/article.jsp"/>
              <action path="/article" type="lyo.hotmail.bbs.lovearticle.Savelovearticle" input="/jsp/error.jsp">
              <forward name="success" path="/jsp/loveforum.jsp"/>
    </action>
    It will display all the content successfully.Why?
    Whether because that the Action is a servlet so it must retrieve a request directly.My first code don't send the request to the servlet other than send the request to a jsp page.The jsp page can't send the same request to the servlet so the error happened.right?
    How do I fix it?Thks :(

    You want to be using <html:link forward="YOUR_FORWARD"> only when you want to forward to static elements and not elements that require actions. So in index.jsp, since you just want to forward to a static jsp page (allarticle.jsp), you can use
    <html:link forward="show">Show All forum</html:link>But since you want your "one forum" link to populate a session attribute BEFORE loading /jsp/loveforum.jsp, you need
    <html:link action="article">one forum</html:link>The reason it's not working now is because you're accessing a session attribute that isn't populated becuase you link to the page statically and it never gets the value of "list" actually stored in the session.
    The reason it works when you change your forward element is because it calls the action that saves "list" into your session.

  • Display Table contents using HTMLB...Urgent Help Plz...

    Hello All,
    Im working on EP SP14 and SQL Server 2000.
    I have successfully established database connection.
    I want to know <b>how can I display Table contents using TableViewModel in HTMLB</b>.
    Please help.
    Its urgent.
    Awaiting Reply.
    Thanks in advance,
    Uday<b></b>

    See /thread/80270 [original link is broken]
    (please stop crossposting every question into two forums; thanks in advance)

  • How can I display all content (graphics)

    On Skynet (United airlines employee website), when I try to look at the "seat selection" window, it displayes only numbers, it does not display a graphic of the cabin (seats). How can I display all content?

    You can see that it is a font issue by the appearance of the little boxes with the hex code of the characters that Firefox displays when there is no font that covers this Unicode range. You might see a different character in case you would have a font that maps this font.

  • Reg. can we display alv grid using field groups (extracts)

    Hi,
    can we display alv grid using field groups (extracts). is this possible. i have to develop a blocked alv.
    tnks
    Yerukala Setty

    No, you will need the data in an internal table to use ALV.
    Cheers
    Allan

  • Can we display report by using Tree node?

    hi all
    can we display report by using Tree node if yes then plz guide me
    sarah

    In the object-navigator in the form there is node named "Reports". Create a new entry and name it "REPORT".
    To call the report use something like the following code:
    DECLARE
      rep REPORT_OBJECT;
      vcServer VARCHAR2(100);
      vcJobId VARCHAR2(100);
      vcUrl VARCHAR2(2000);
      vcServer VARCHAR2(200) := 'PUT_YOUR_REPORTS_SERVERNAME_HERE';
    BEGIN
      rep:=FIND_REPORT_OBJECT('REPORT');
      SET_REPORT_OBJECT_PROPERTY(rep, REPORT_FILENAME, 'put_the_filename_of_your_report_here');
      SET_REPORT_OBJECT_PROPERTY(rep, REPORT_DESTYPE, CACHE);
      SET_REPORT_OBJECT_PROPERTY(rep, REPORT_DESFORMAT, 'PDF');
      SET_REPORT_OBJECT_PROPERTY(rep, REPORT_SERVER,vcServer);
      vcJobId := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
      vcJobId := SUBSTR(vcJobId, LENGTH(vcServer) + 2, LENGTH(vcJobId));
      vcUrl:= '/reports/rwservlet/getjobid' || vcJobId || '?server=' || vcServer;
      WEB.SHOW_DOCUMENT(vcUrl, '_blank');
    END;

  • MIME-TYPE is stored incorrectly sometimes, browsers can't display html content

    Our company is switching from Netscape Communicator to Internet Explorer 5.5 . This resulted sometimes in html-documents which could not be opened in netscape anymore, but caused the save-as dialogue box to pop-up.
    Analysis of this problem, with the aid of Oracle Support, showed some html-documents were stored in WWV_DOCUMENT with mime-type application/octer-stream. This is a mime type which should trigger the save-as pop-up dialogue in browsers. Netscape acts accordingly, but IE does display the content normally.
    The following events cause this problem:
    1. create a html document using a microsoft office product (word/excel)
    2. DON'T close the document in the office application
    3. Use the portal wizard to upload the file to a content area
    4. Use table WWV_THINGS and WWV_DOCUMENT and see mime-type isn't text/html but application/octet-stream
    5. IE shows the file, NN wants to save it.
    The workaround to this problem is to close the file in MSOffice before uploading it.
    Oracle Development confirmed it's the browser which sends this incorrect mime-type, and portal just stores this type. It seems this mime-type is overruling the extension to mime-type mapping in the configuration of Apache, using AddType or the file mime.types.
    So the mime-types defined in apache are only used outside mod_plsql, that is, when files from the filesystem of the webserver itself are used.
    When uploading a zip-file, and unzipping it in the database, all files get the right mime-type. It seems in this situation the mime-type is determined by looking either at the file-extention or the magic bits.
    Oracle says it's a microsoft bug, so I'll have to ask Bill for a fix.
    They are probably right, and I think I could reproduce this using CGI-scripting without modplsql and portal.
    But:
    It seems not logically to me that it depends on the method of uploading files (single files, or zipped files) which method of mime-type determination is used.
    Furthermore, I find it strange that it depends on the storage location of the file (database or filesystem) which mime-type is presented at the user.
    I'd like to hear your opinions about this
    Regards,
    Ton Haver

    You want to be using <html:link forward="YOUR_FORWARD"> only when you want to forward to static elements and not elements that require actions. So in index.jsp, since you just want to forward to a static jsp page (allarticle.jsp), you can use
    <html:link forward="show">Show All forum</html:link>But since you want your "one forum" link to populate a session attribute BEFORE loading /jsp/loveforum.jsp, you need
    <html:link action="article">one forum</html:link>The reason it's not working now is because you're accessing a session attribute that isn't populated becuase you link to the page statically and it never gets the value of "list" actually stored in the session.
    The reason it works when you change your forward element is because it calls the action that saves "list" into your session.

  • How can I display comments when using poll

    hi Experts,
    I am using wc11.1.1.5 with poll function, I published a poll with some questions and a text box for suggestion feedback, when I check result, I can only get answers for the question but no suggestions can be displayed, how can I get the suggestion displayed?
    Best regards

    You have to customize surveyResults.jsff page fragment that is available in "WebCenter Polls and Surveys Service View" library. You can find this library by creating a WebCenter Spaces Task flow Customization project from Jdeveloper. Kindly do let me know if you need more details in this regard.
    You have add output or label in surveyResults.jsff and then map its value attribute with RE of suggestion text area might be available in surveyResultBean class.
    How to customize task flow, pls see following link:-
    http://download.oracle.com/docs/cd/E21764_01/webcenter.1111/e10148/jpsdg_taskflows.htm#BACIEGJD

  • Having issues playing flash content using Chrome

    I have tried installing/reinstalling Flash Plugin several times. I can play content with Internet Explorer. For the same content when using Chrome I get error saysing "Could not load plug-in"
    Following link shows version 11.5.502.110. I am using Windows 7 -64 bit
    http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html
    The same link about on chrome says "could not load plug-in" thus unable to read the flash version.
    On the contrary I see following at Chrome://Plugins
    Shockwave Flash 11.5 r31
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 11.5 r31
    Version:
    11.5.31.2
    Location:
    C:\Users\maheshmali\AppData\Local\Google\Chrome\Application\23.0.1271.64\PepperFlash\pepfl ashplayer.dll
    Type:
    PPAPI (out-of-process)
    Disable
    MIME types:
    MIME type
    Description
    File extensions
    application/x-shockwave-flash
    Shockwave Flash
    .swf
    application/futuresplash
    FutureSplash Player
    .spl
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 11.5 r502
    Version:
    11,5,502,110
    Location:
    C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_5_502_110.dll
    Type:
    NPAPI
    Disable
    MIME types:
    MIME type
    Description
    File extensions
    application/x-shockwave-flash
    Adobe Flash movie
    .swf
    application/futuresplash
    FutureSplash movie
    .spl
    Disable Always allowed

    Google Chrome
    23.0.1271.91 (m)
    OS
    Windows 7 or Server 2008 R2 SP1 64 bit
    Flash plugin
    11.5.31.2 C:\Users\maheshmali\AppData\Local\Google\Chrome\Application\23.0.1271.91\PepperFlash\pepf lashplayer.dll
    Flash plugin
    11,5,502,110 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_5_502_110.dll (not used)
    --- Crash data ---
    Crash Reporting
    Enable crash reporting to see crash IDs
    For more details
    https://support.google.com/chrome/?p=ui_usagestat
    --- GPU information ---
    Graphics card
    Mobile Intel(R) 4 Series Express Chipset Family
    Driver display name
    igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Driver name (strong)
    oem3.inf:Intel.Mfg.NTamd64:iCNT0:8.15.10.2226:pci\ven_8086&dev_2a42&subsys_20e417aa
    --- GPU driver, more information ---
    Vendor Id
    0x8086
    Device Id
    0x2a42
    Driver vendor
    Intel Corporation
    Driver version
    8.15.10.2226
    Driver date
    10-15-2010
    Pixel shader version
    3.0
    Vertex shader version
    3.0
    GL version
    GL_VENDOR
    GL_RENDERER
    GL_VERSION
    GL_EXTENSIONS

  • 8889/forms/frmservlet - No plugin to display the content in Chrome

    This, I reckon, is a basic configuration issue.
    Using Forms [32 Bit] Version 10.1.2.0.2 (Production), XP Pro,
    Chrome Browser
    Windows Standalone installation
    While running the form, I get the following error. Please advise what configuration parameters do I need to set up to view the form in browser.
    <mypcname>:8889/forms/frmservlet no plugin available to display this content
    Started database, connection to database from forms developer 10.1.2.0.2 is successfull, started oc4j instance, I didn't change anything in formsweb.cfg. Please advise.
    jre is 1.6.0_31 on my laptop.
    Thanks for your help.

    Well, for starters Chrome is not supported for use with Forms 10 and JRE 1.6 is not supported for use with Forms 10.1.2.0. Please see the Forms Client Statment of Direction for client side certifications.
    http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html#BABGCBHA
    After you are working with a certified configuration, if you still have a problem please share some details. For example, are you getting an error message? Does it work from IE or FF? We need details of what you are experiencing and what you have tested thus far.

  • Change the TOC contents using parameters via URL

    Is it possible to change what topics can turned on and off by passing a parameter via the url.  At the moment, when I use a conditional tag, everything that is not in the "excluded" column will show up in the final WebHelp.  But I would like to control what topics in the TOC show up based on a parameter.  Is that possible?

    Hi there
    Unfortunately RoboHelp makes no provision for that. About the only way you could make it happen would be to create as many permutations as you need. For example, let's say you need six different TOC layouts. You would need to create six different WebHelp outputs and store each output in a separate folder. Each of the TOCs would be different. You would then link to the desired WebHelp output.
    There is another way you might accomplish it. You could create multiple projects and gather them together using a Merged setup. You could then control what appears in the TOC by restricting access to the folders where the Merged Projects are placed. If the master TOC cannot find the folder for a Child, it will not display the Books and Pages for the Child.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How can i display blob (picture) using jsp

    i can get byte array from oracle database.
    and how can i use byte array to display just like img src = '' in html ?
    thankyou

    You can't. You have to use <img src...> in the HTML. That src can be to a servlet that gets the image data from the DB and writes the image data out, of course. Just set the content type to image/jpeg or image/gif or whatever it is.

  • Can't display any content in safari

    I guess it was after the last update to Mac OSX 10.4.8, my safari stop working any more. The browser stay blank when I open it (actually it's loading the content in the background
    because if i drag the right bottom corner to resize the window, the content appear but stuck at the screen)
    It feels like safari stop refreshing the screen.
    Is there any way to fix it??
    thanks

    Hello Thy,
    If I may add to Andy's always good advice, whlist he is off on his boat;-)
    In Safari Preferences, Appearance tab: check that,
    Display images when page is opened: is√ on.
    Could you please post a screenshot of the loaded background Safari window you can use Photobucket to host it.
    I tried everything you said, but none of them solve the problem~
    still very thanks for helping me
    So to recap,
    • Safari did not work in the "Test" account
    • Reapplying the Combined Update Mac OS X Update 10.4.8 Combo PPC
    ~•~~•~
    Do you use a tool to clean up internet clutter, this is freeware. OnyX Use this article to help you Clearing caches with OnyX
    If not please do so.
    Did you then reapply the combined update using these steps ? a. Brody lets review... doing a double reboot, after the install.So when the computer promts for a restart, comes back up restart once again.
    Please read a. Brodys first post, this applies to all updates after 10.4.6
    Try running disc permission repair use this article to help you do that
    Travis A.'s Regular Maintenance/General Troubleshooting
    Good luck, please keep us posted, if any questions please ask.
    Eme

  • How can I display more info using remote app?

    Hi there,
    I use remote app a lot, but I find it quite basic in the display features.
    I mean: remote is great to browse my music library and play songs with on my living room hi-fi while I'm sitting comfortable on my sofa.
    But what if I would like to know the release date of the album, the name of the composer, and so on?
    Is there any way to configure the remote app to display more?
    Is any kind of new release of the app on its way?
    Thank you.

    Command (right) - click on a photo in the Photo tray and select Small Photo from the contextual menu:
    This will give you two columns of photos.
    To reduce the number of photos to select from one can select only Unplaced Photos to be displayed in the tray.
    Happy Holidays

  • How can I display some OrdImages using a Applet in html or Jsp?

    hi
    I want to use a applet to display some images retrieved from intermedia OrdImage Object.
    Now ,I know that a applet can display some image objects or some images with their own filepaths. But we can get ordimag objects from Oracle database.And we can image data or image properties by ordimage java mathod. It is in html/Jsp environment. So how can I transform from ordimage to applet?? I appreciate someone who can help me!
    Bill

    Do you mean applet or Servlet?
    An Applet is java code that is downloaded over the web and runs in a web browser environment. Is this what you are doing?
    I suspect you are really talking about servlet/JSP environments, and the ability to include images from the database in a web page.
    In either case (applet or servlet), you want to be able to access images via a URL. For a Servlet/JSP/web page, this URL will be specified in a HTML <IMG> tag with a key as a parameter to the image you wish to view. Images are not in-line downloaded in a web page. They are access after the HTML is loaded, and are accessed with URLs, sometimes relative URLs rather than fully specified URLs.
    To deliver images to the web from the database using the PL/SQL gateway and iAS, where the procedures are generated by a wizard, see:
    http://otn.oracle.com/software/products/intermedia/htdocs/descriptions/imedia_code_wizard.html
    You can create a simple servlet (JSPs can not deliver binary data) that delivers database images using java classes. See:
    http://otn.oracle.com/software/products/intermedia/htdocs/descriptions/servlets_jsp.html
    http://otn.oracle.com/sample_code/products/intermedia/htdocs/intermedia_servlet_jsp_samples/imedia_servlet_jsp_readme.htm
    for a sample.

Maybe you are looking for