Robo v9 Show/Hide without Twisties - One button no longer working

Hey there, as stated I am using Robo v9 with Show/Hide without Twisties (One button) with javascipts.  We have most of our images using DHTML drop-downs and when folks click on "Show All Images" on the page, the GIF changes to "Hide All Images" and all drop-downs (our images) and expanding text are diaplayed.
It had been working all the time, but now it only works when I right click the topic in the TOC and choose "Edit Topic", then while in the Edit Window (Display view), when I do a View (Ctrl-W) and it displays the page within RoboHelp..I can click the "Show All Images" and it works like it always had.  BUT, if that page is not in the Edit Window, and I right click "Preview Topic", the click "Show All Images" (or on the DHTML dropdown itself) it will NOT show the images, *but the GIF image does properly toggle to "Hide All Images" (and if I do again, then it properly toggles to the "Show All Images" GIF, if I do it again), but now NO images are getting displayed for some reason.  It also NEVER works properly when I publish to our website (even when clicking the DHTML dropdown itself), but the GIF images toggle properly.
If I right click and choose "Preview Topic" and click "View With" and use Internet Explorer 8 it still never works anymore, unless the topic is in the Edit Window (Display View), so I know the issue is not on the server.  It stops working after I do a generate and run on my pc.  Also when I view it IE8 within Robo (and Allow the Blocked Content to run the scripts), many instances of the same error is shown as:
Message: Access is denied. 
Line: 2646
Char: 3
Code: 0
URI: file:///D:/Users/_RBH9_TPO-Generate/v9-testing/ehlpdhtm.js
...but I *do* have access to the folder system, but in checking the coding of the ehlpdhtm.js, that area show, where I believe line 2646, character 3 starts at the "values = getAttribute(element, prop );" line below...but maybe something does not exist:
==
  //End HTML code invoked function
function InitEffect( element, prop )
var values = null;
if( getAttribute(element,prop)) 
  values = getAttribute(element, prop );
else if( getAttribute( element, "currentStyle" )  && element.currentStyle.getAttribute)
  values = element.currentStyle.getAttribute( prop );
else  if (element.style.getAttribute)
  values = element.style.getAttribute( prop );
if( !values )
  return;
var functions = new Array();
==
I have a much older backup when restored, it all works properly again in all cases, but I have done so much work since then that I think would need to be manually redone.  I have played with keeping those some javascipts alone (in case I changed something) and updated the rest of the data files I had added, deleted the .CPD file, but it somehow stops working again, probably with some updated file.  I am not sure what specific files could be causing the negative impact that is preventing it from working.  Maybe if I knew what files could impact, I couldrestore those from my old backup.  The newer backups when restored do not work properly, so there was a point in time where something changed and is causing this.
All prior versions of RoboHelp (v7 and v8) have always worked and still do.  I am using v9.0.1.262, as the latest version has not yet been allowed on our pcs (per security), but since my earlier backup works, I thought it may not be the issue, but wanted to tell you anyway.  ;->
Any ideas on how I should proceed?  What files may have impact to cause it not to work anymore?  The showhide.js is the only .js to show up as a baggage file.  Also, the DHTML line does exits in each html page's code, as we are still using Robo v7 as the production software and the Show/Hide always works, and I copy them into the respective Robo v9 folders (and if new, then I copy them, then import them), otherwise the newer v7 updated pages are copied over the older v9 html files while RoboHelp is closed.
Thanks in advance for any info you can provide!

I may have figured out what to fix to get v9 back to working on the Show/Hide button, but not the "why?" .
It looks to all be dealing with the Robo automatic html coding of where to locate the .js file(s)...here is a quick overview of this issue and what I did.  When I view the non-working pages within Internet Explorer 8 within Robo (and Allow the Blocked Content to run the scripts), I saw many instances of the same error is shown as this in the log, which implied since I *do* have access rights, maybe the file was just not being found.
Message: Access is denied.
Line: 2646
Char: 3
Code: 0
URI: file:///D:/Users/_RBH9_TPO-Generate/v9-testing/ehlpdhtm.js
OK, here are my findings.  EXAMPLE #1 and EXAMPLE #2 below are excerpts of the same file.  EXAMPLE #1 is from Robo v7 and is copied to the v9 folder after it was updated so our soon to be "production" webhelp will be from Robo v9 (instead of making the same manual updates in Robo v9 as in Robo v7, I copy the updated the .html file to the Robo v9 file system).  Note the direction of the directory slashes of the java scripts listed below, as they are all DOS type slashes (back slashes), EXCEPT for ehlpdhtm.js as it is the ONLY one using UNIX (forward) slashes.
EXAMPLE #1 (from Robo v7)
==
<link rel="StyleSheet" href="..\..\sty-std-topic.css">
<script type="text/javascript" language=JavaScript x-save-method=compute-relative
src="..\..\showhide.js"></script>
</head>
<body>
<robohelp><script type="text/javascript" language=JavaScript1.2 src="../../ehlpdhtm.js"
x-save-method=compute-relative></script>
<script type="text/javascript" language=JavaScript1.2>
<!--
if( typeof( InitEffects ) != 'function' ) InitEffects = new Function();if( typeof( InitTrigger ) != 'function' ) InitTrigger = new Function();if( typeof( FilePopupInit ) != 'function' ) FilePopupInit = new Function();if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
//-->
</script>
==
EXAMPLE #2(from Robo v9)
This is from the restored backup of the Robo v9 files that always work when I restore them, and note they are ALL UNIX (forward) slashes.  These backup files were generated from Importing/Upgrading a copy of the Robo v7 files into Robo v9.
++
<title>[Endpoint Protection] Symantec Overview</title>
<link rel="StyleSheet" href="../../sty-std-topic.css" type="text/css" />
<script type="text/javascript" language="JavaScript" src="../../showhide.js">
</script>
</head>
<body>
<?rh-script_start ?><script src="../../ehlpdhtm.js" type="text/javascript" language="JavaScript1.2">
</script><?rh-script_end ?>
++
Additional info: The following is from another file from the Robo v9 backup files that always WORK and once again they are ALL UNIX (forward) slashes. 
~~
<link rel="StyleSheet" href="../../sty-std-topic.css" type="text/css" />
<script type="text/javascript" language="JavaScript" src="../../showhide.js">
</script>
</head>
<body>
<?rh-script_start ?><script src="../../ehlpdhtm.js" type="text/javascript" language="JavaScript1.2">
</script><?rh-script_end ?>
~~
BUT since all .js files are referenced in EXAMPLE #1 have DOS slashes (back slashes), EXCEPT for the ehlpdhtm.js, I decided to change the line in ehlpdhtm.js FROM src="../../ehlpdhtm.js" TO src="..\..\ehlpdhtm.js" and IT (this one page) BEGAN WORKING AGAIN after I published.  So having all DOS back slashes DOES work in Robo v9!!!!  BUT it appears that Robo v9 only generates new pages using UNIX (forward) slashes in ALL coding.  I've read about issues like this occurring with the FireFox browser, but we only use IE8, and have not read anything like this related to IE8 issues. 
So if all UNIX forward slashes and all DOS back slashes can work in Robo v9 in finding and using ehlpdhtm.js, (the Show/Hide buttons function properly) why is this problem existing in Robo v9 when there are mixed "slashes" (using forward and backward)?  ...and the mixed slashes ALWAYS works in Robo v7!  They do not have to all be in the same direction in Robo v7 as it appears to have to be in the newer/more advanced Robo v9.  Why does it matter that all slashes need to be all the same direction, if Robo v9 CAN actually read and figure out the DOS back slashes (formatted by Robo v7 creation) and actually generates UNIX forward slashes for the .js files in new Robo v9 output within the .html?
More importantly will I have to always do a Global search and replace in Robo v9 to change the direction of the "back slashes" when I copy updated Robo v7 .html files into the Robo v9 folders (instead of manually reworking each change), while in transition from v7 to v9?
Thanks in advance any information, recommendations, and feedback as your time is greatly appreciated!

Similar Messages

  • Since updating to 3.6.15 today, back button no longer works and FF doesn't remember URLs

    Since updating to 3.6.15 today, back button no longer works and FF doesn't remember URLs. Not just that memory of previous URLs got wiped out, it still doesn't remember the ones I've typed in since I updated. And No back button, it's really hard to use.
    I went thru all the settings and could not find a way to fix this problem. What is up? I've never had this happen in any version of IE, FF, or Chrome.
    Can I get back previous version? Until then, it's Chrome and IE for me.
    I'll be happy to delete any plug-ins if it will make this problem go away.
    THANKS in advance!

    Thanks. This didn't solve te problem but it seemed to have solved itself. all of a sudden it started working properly, without me even closing FF and starting it up again. Thanks Cor-el, if it happens again I'll try your solution.

  • Back button no longer works in some specific situations; also, it appears that clearing cache isn't working.

    The "back" button no longer works in certain specific situations on certain specific websites -- especially on the very website on which I need to use it very frequently. This has been going on for a couple of weeks.
    Also, I noticed today that the "clear cache now" command doesn't seem to be working. Formerly, when I cleared the cache, I had to re-login to those websites that normally "remember" my login (because clearing the cache erased that "memory") -- but today, after using the "clear cache now" command, those websites still "remember" my login, which leads me to believe the cache didn't get cleared. Is there any other way to check whether it got cleared?
    I was attempting to clear the cache in the faint hope that this might help the above "back" button problem, as no one has yet given me a solution for this that has worked. One person suggested having Firefox re-create the possibly damaged "places.sqlite" and "places.sqlite-journal" files. I tried this, but there was no change to the problem.
    I think this problem started around the time I had a few Firefox crashes while using YouTube and doing something else on the computer at the same time.
    I just today learned about the "crash signature" -- how to look it up, and to include it in a forum question. However, the crash log did not show these recent crashes, only some others from a few months ago. So, I'm unable to show the crash signature for this.
    I'm guessing there's a chance that upgrading to a newer version of Firefox might fix this problem -- but I hesitate to do that, because it occurs to me that it also may be possible that changing the program before fixing this might make it harder to fix. I don't have enough knowledge of this software to know which is more likely, and I don't like to try things at random, in ignorance of the possible results. Also, after reading today several other forum comments from people who are unhappy with their Firefox upgrades, I hesitate to upgrade for that reason, also.

    Websites remembering you and automatically log you in is stored in a cookie.<br />
    So you need to remove the cookies to make a website forget you.
    * http://kb.mozillazine.org/Cookies

  • Since bundle 2921 some of my buttons no longer work

    I updated phone to version 6 bundle 2921 over the weekend and now the following buttons no longer work, 'S,G,H,L,W' and my scroll button no longer works either. These speed dials no longer work (speed dials to other letters are fine.)
    I have not dropped it, got it wet or let the battery run out. I figure it is a software issue as I didn't have any of these issues before the update. Also, when I do a battery pull, the buttons work for a short time (1 minute) and then no longer work.
    Is there an update to the update or can I roll back to my previous version?
    thanks

    Hello,
    The simplest way is to, on a PC (you cannot do this on MAC):
    1) Uninstall, from your PC, any BB OS packages
    2) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/apps-software/desktop/?lid=us:bboftwareesktopSoftware&lpos=us:bboftware
    3) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    4) If that OS package is from a carrier other than the carrier for which your BB was originally manufactured, then delete, on your PC, all copies of VENDOR.XML (there will be at least one, perhaps 2)
    5) Launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC. If, during the process, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    Don't forget to backup.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • "prev"and "next" buttons no longer work on Yahoo/other slideshows. Still work in Chrome.

    In updating for FFX 6 and 7, the next and prev buttons no longer work in slideshows on Yahoo news and similar sites. Sometimes the status bar shows the links as javascript: void or :null. Sometimes longer links. All javaconsole add-ins are shown as incompatible with these version of FFX.

    i woudnt suggest it, but if your warranty is up it could just be a bad connection from the wheel...what generation do you have? my 4th generation 20 gig ceased to function and it was because somehow one of the cables had a bad connection. i took it to the apple store and they gave me an estimate for something i wasnt willing to pay on a 2 year old ipod so i just winged dissasembleing it and after taking apart the whole thing and reassembling it worked fine.

  • My iPhone apps keep crashing and my sleep button no longer works

    So my apps keep crashing when I try to open them; everything from games to my email.  My sleep/power button no longer works so I can't even shut it down to restart it.  I don't know if I should just let the battery die and hope that by rebooting it will work again?  Doesn't really make sense why they won't open anymore.

    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies<br> '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • My lock button no longer works on my ipod touch and now i have all kinds of problems with it freezing and kicking me out of apps. Is there any way to get this fixed and were would i go to get it fixed?

    Please Help!!!! I have an ipod touch 4th gen.  and since the last update the lock button no longer works, this has caused it to have a lot of problems now like freezing all the time, kicking me out of almost all my apps, some times even when if locks on its own its not locked and buttons with be pushed in my pocket, and this causes the battiery to die fast.   I really love my ipod and would like to just get it fix if possible for a reasonable about of money. Anyone know of a place I can get it fixed in Ft Lauderdale Fl area or is there something I can do?

    Have you tried:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    Apple will exchange your iPod for a refurbished one for this price:
    Apple - Support - iPod - Repair pricing
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Why are the back/forwards buttons no longer working after upgrade?

    Hi, I recently upgraded from Firefox 3.5 (I believe) to Firefox 4.0.1 and now the back and forwards buttons no longer work. I tried resetting the settings under the toolbars > customize, etc. That didn't work. FYI, I'm using a mac. Any solutions? Thanks in advance...

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • HT2188 home button no longer working after upgrade to io6 on my iphone4...any ideas to fix this problem

    home button no longer working after upgrade to ios6 software on my iphone4..anything i can do to frix this or apple send me a new device.  phone no good without a home button

    The button's broken.  S**t happens.  Apple will replace your phone.  If in waranty it will be free of charge.  If not, you will pay $149. 
    You can elect to have it repaired at a 3rd party shop near you if you choose, but this will void all warranty if there's any left.

  • Yahoo mail page sign-in button no longer works

    I suddenly can't sign into my yahoo accounts on my iPad 1.  It seems the sign-in button no longer works, when I tap it or use the "go" button, nothing happens - no error message, nothing.  I've re-set the iPad and I still can't sign in.  I can get to all of the other Yahoo web pages, just not my mail.  I can sign into other websites no problem.  Any suggestions?  Is my iPad now completely obsolete?
    I can sign in without a problem on my iMac.
    Thanks,
    Kathleen

    Reset your iPad. This will do no harm and you will not lose any data. See if that works. If not, clear Safari and then try again.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Go to Settings>Safari>Clear History, Cookies and Data.

  • The back button no longer works. I have disabled all add-ons, rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    the back button no longer works. I have disabled all add-ons,rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    Another possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Standby button no longer works after upgraded OS from 4.... to 5.0.0.484

    Hi all.  I am new to BB and have a Tour 9630.  After "upgrading" my OS yesterday the former "standby" (mute) button no longer works.  I tried to find a place to assign "standby" mode to the left or right shortcut key but no luck.  Also, I noticed my Opera browser is significantly different (and more annoying) because clicking the trackball goes back....  Any thoughts on either issue would be appreciated.  Thanks.

    Ok, so apparently I haven't looked at my phone too closely. The old Pearl model only had one button up top, which you used for both mute and standby. The new Tour apparently has two- the one on the right is the mute and the one on on the left is the lock.
    On the Pearl you could press * to lock and *+[Green talk button] to unlock. On the Tour the only option you have to unlock is to press the lock/unlock button on the top left. It's pretty clear when you look at the top of the phone. However I usually have mine in a silicone case, which does have markings but they're very hard to make out.
    So the phone locks and unlocks just fine, even after the OS 5.0 upgrade. However, I'm still wary about getting rid of standby mode if, in fact, it is a battery-saver. (Which I'm pretty sure it is)
    Bring back standby mode, Blackberry!!

  • Sleep button no longer works

    Sleep button no longer works, how do I get it fixed and how much will it cost. It is a repalcement from Sprint insurance and only hac it about 5 months.

    The warranty will cover that is the device is only three months old and if the defect was not caused by accidental damage - like you droppoing it. I'm not accussing you of anything, I am just explaining how the warranty works.
    I would try resetting the device - even though you need the sleep button to perform the reset. See if that works and then see if it helps at all.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    I would also try the iPad without the cover for a while to see if the cover is playing games with the lock feature.

  • Why does my button no longer work in Flash Player 8?

    Hi,
    I have built a site in Flash MX a while ago. Now I’d
    like to upgrade things a bit while testing the new Adobe Flash CS3.
    To be able to use a new function (“anti-alias for
    readability”) the program warns me that “this feature
    is not supported by Flash Player 6. To use this feature, you must
    target Flash player 8.”
    So I change the setting to Flash Player 8, leaving
    Actionscript to version 2.0.
    However, now one of my main menu buttons no longer works!
    When I change settings back to Flash Player 6, things are fine
    again. What am I overlooking?
    Below is the script for the button (which has an instance
    name). Does anything change with the actionscript in CS3?
    Thanks for any advise!
    on (rollOver) {
    gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
    gotoAndPlay("s2");
    on (release) {
    _root.Play();

    That's it! It works fine again. Thanks a lot, you made my
    night!

  • Function Buttons no longer work

    Installed Leopard. (Had a painful time).
    The Fn Buttons used to work with tiger:
    Fn F4 -> volume, Fn F2 -> Brightness, etc...
    These buttons no longer work.
    How do I fix it ?
    Do I need a driver or something ?
    Ajay

    System Preferences > Keyboard & Mouse > keyboard.
    Make sure the 'Use all F1 & F2 as Standard function keys' has been ticked or use the keys without the fn key.
    Best

Maybe you are looking for