Whtopic.js and whtbar.js files in RH 10 show no topics

Hello,
I have posted questions about these two files before, and they were resolved, but our QA department and a customer recently noticed that help compiled in WebHelp was not opening. This was discovered after my upgrade to RoboHelp 10 in case that matters.
My webhelp for this project is unusual in that it opens within one of our products and not in a separate browser. This reason necessitated me using an old whtbar.js file with the code changed from "goAvePrev():return false" to "javascript:history.back(1);return false" and the same goes for the next topic code.
We've been getting error messages concerning this file, but we believe we've resolved that at least in the sense that we are no longer getting the error message. However, now the help opens, but we are not seeing any topics (Index, TOC, Search) in the left pane. I'm guessing this has to do with the whtopic.js file. I have tried a couple variations, but neither work.
If anyone has any idea why nothing (except the LNG wording like Find: and Search) will appear in the left pane, I would really appreciate it. I have been trying to figure this out with QA, going through version control to find out when it last worked and compare it to the first time it didn't work by showing build history. So far, that is not working. Again for whatever it's worth, between the help project opening without error it working and not working, I upgraded to 10. That might have anything to do with it, but I fear that it may.
Thanks again.
Kevin 

William,
Thanks very much for your reply. This customer issue was a real conundrum. I spoke with Adobe Support and per their suggestions, I experimented with new skins as well as the auto-created TOC. I also removed all Index and TOC entries and replaced them manually. QA dropped the various incarnations in the WebHelp folder and it looks like a combination of these efforts resulted in a stable help system. We have fixed it for the customer and will do another build of the next version of our product to make sure the help project appears and has a left pane of contents. So far, so good. At first, we got the help to appear without an error, but the left pane was blank. Now we have it working as expected.
Adobe mentioned that the upgrade to 10 might have corrupted the topics. We have found the whtbar.js file that we will always use for this particular WebHelp, and it looks like the other files are OK now. Thanks very much for the help.
Kevin

Similar Messages

  • When I go to my downloads folder on my dock and click the file all the content shows up but as soon as I go to open it in the finder, I get a blank window. Has anyone else had this problem, if so, How do you fix it.

    When I go to my downloads folder on my dock and click the file all the content shows up but as soon as I go to open it in the finder, I get a blank window. Has anyone else had this problem, if so, How do you fix it. I also cant delete anything from this folder because of it. Any help would be greatly appreciated.

    Hey Allen,
    I am having the same issue here in September.  How did yor situation get resolved.  My iPad Siri works great.  My iPhone 5 Siri has been out of comission (OOC) for almost a month and I am beginning to get a little frustrated since Siri works so well in July....ANY assistance would be highly appreciated... Thanx

  • A Friend Was Working On My Mac Pro And Now Every File On The Computer Shows

    A friend was using the Mac Pro to look at a disc, and he said he went into Terminal. Now, every file on the computer shows. He hasn't gotten back to me, and it's a little annoying, seeing ALL the faded envelopes with minus signs, and extra files. I hope this makes sense. I know he went into Terminal, and it had something to do with Finder and show all, or something. Any help is appreciated.

    Open the Script Editor in the /Applications/AppleScript/ folder and run the following:
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    Click on the Finder in the Dock with the Control and Option keys held down and choose Relaunch. Some third-party utility software will also do this.
    (52543)

  • .xml file and iTunes library files are missing from the music folder

    I recently made a second itunes library on my external hd, today when I open itunes and choose this library, the .xml file and itunes music file are invisible or translucent, therefore I can't open my library. But when I go to my music folder they are missing. Another odd thing is that all my music is still in the folder. Is there a way to re-open my library w/o re-importing all my music? Can I some how get a new itunes library file?
      Mac OS X (10.4.10)  

    This is not an answer but I have the same problem. From time to time I clone my music drive to an external drive for back up. When I do, I burn a copy of the album artwork folder, iTunes Music folder, iTunes Library.itl, iTunes Music Libraru.xml, and iTunes Library file to CDRW. This is so I can copy them into the music folder in my user home drive of my laptop then hook up the external and have access my library. Trouble is the .xml file and iTunes library files don't always show up when I go to the iTunes folder in my Music folder. There either is a blank where they should be or the names appear with no icon and when I click to select, that dissappers too. I thought I had a solve by exiting iTunes and letting it save everything. It seems to bring the .xml file back but not the itunes Library file. Any thoughts?

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Data Recover From Formatted Drive? What is the best program to use to get back Logic Projects and any other file type?

    I was in the process of reorganising my hard drives so I could RAID them however I managed to corrupt one drive and had to format it which meant I lost all my Logic Files and some other files. I managed to save a lot of files (mainly video files) before I had to format the drive but I need a Data Recovery service that will not alter anything on the hard drive and will put all the formatted files (regardless of the type) back for me so I can get the rest of the ones I need.
    Thanks in advance.

    What about folders and such?
    No. FS doesn't reconstruct folders. However, Data Rescue does, depending on how you use it. About the only thing in Data Rescue a Quick Scan ever seems to show you are files that are already live.
    So that leaves you with a Deep Scan, or a Deleted Files scan. The first pass of a Deep Scan will attempt to retrieve folders and files, along with their original names. The second pass only looks for file patterns. Like recognizing a Photoshop .psd file. It will recover it, but give it a nonsense name. A Deleted Files scan only results in nonsense names of recognized file types; no folders.
    What were you using File Salvage on? A hard drive?
    Yes, though you can use it on a flash drive, or any other mounted drive.
    At the moment it is estimating 289 hours remaining on a 1TB drive. Can it not go faster?
    No, both of the software mentioned are slower than molasses in January. When you delete anything in Windows, its file table entry simply tagged as deleted. So to unerase them, the tag is removed. That's why it works to quickly and easily (assuming you haven't already overwritten the data to be recovered).
    In OS X though, the whole idea of the underlying UNIX structure is all about security. It's not supposed to be easy to retrieve deleted items. When you delete items, their file table entries are erased. So the only way to find deleted items is to scour the entire drive for BOF (Beginning Of File) markers that don't have a matching starting block to anything that is in the file table.
    Another question, half the drive was empty. Will it fly over that empty space or will it sieve through it incase there was some files stored on it?
    If you use the Expert mode is FS, you can choose to do that:

  • How do I get iTunes on a new computer to recognize and use my files on the local drive?  My music files on iCloud have been recognized.

    My old computer failed.  All files, including iTunes were backed up on a separate drive.  All files have been loaded on the new computer.  iTunes was reloaded, and recognizes all files on iCloud, but does not link to the files on the computer.  How can I re-establish that linkage?

    Hello jzinser,
    I am not sure on how you reset up your iTunes library on your new computer. If you copied the music by dragging on top of iTunes, then the media would have been put into the proper location. If you have the media copied to your computer and have not established in iTunes where it sits, then you will need to do that within the preferences in iTunes. Take a look at the articles below for more information to help sort this out. 
    iTunes for Windows: Moving your iTunes Media folder
    http://support.apple.com/en-us/HT201543
    Locate and organize your iTunes files
    http://support.apple.com/en-us/ht1391
    Regards,
    -Norm G. 

  • How to Edit and Replace Psd Files in Adobe Flash - Help!

    Hi Everyone,
    I am new to flash and I am trying to build my first flash site using a flash template. I can use flash to edit certain components like header text, etc. But The content is impossible for me to change. I think that these are psd files, which I can open with gimp or another program and edit. I save and replace that file, but when I view movie again, the content is the same. I guess what I need to know is how to get these files back into my flash movie after I have edited them. Please help, I am no computer expert, but I am learning. A how to for dummies answer would be awesome.

    Maybe You should try the Flash-forum:
    http://forums.adobe.com/community/flash

  • Image Capture downloads pictures and creates .aae file

    Using Image Capture 6.6 to download pictures from my iPhone 5S to Macbook Air w/ OSX Yosemite.
    When I go to the folder where I download the files on my computer, it shows a .JPG file and an .AAE file.
    I cannot find preferences for Image Capture to turn the additional download off.
    It is doubling file size storage on my computer as each picture has a .JPG @ 600KB and an .AAE @ 600K
    I have bulk deleted the .AAE files using Spotlight and searching the file type, but do not wish to continue doing this if there is way to turn this off.

    stevencallan wrote:
    However, upgrading the camera to a newer Logitech device (Pro 9000, and the dropping of explicit support from Logitech with twain a while back), a "Select source" dialog window appears, with nothing in >the source list (so basically a blank text box with only the Cancel button active). Using a properties file works for other parameters (jdbc data source, logging, file name for the image), but kind of drawing a >blank on the data source for the camera.This is why I'm reluctant to upgrade software (imaginee frowney emoticon here; for those who still doubt wait until the next OTN site upgrade for another example). Stuff sometimes doesn't work any more when you do (imagine another frowny emoticon)
    Until a better idea comes along use a card-reader to put the files into a folder, then load them into Apex as a second step. This is not as conveneint as loading directly from the camera, but if the interface won't work you'll have to do somethiing else.
    I don't have immediate access to Apex - can you load off a card-reader instead of the camera by specifying the drive to load the files from?
    It sounds like more of a Windows problem than Apex. Have you tried browser searches on Logitech and Twain to see if anyone has encountered similar problems?

  • I have recently updated my CC programs to the latest version and now all of my files wont open by default into their respective programs, only if I open the program and go to file open and open the file from there. How can I fix this?

    I have recently updated my CC programs to the latest version (CC2014) and now all of my files wont open by default into their respective programs, only if I open the program and go to file>open and open the file from there. How can I fix this?
    I have tried 'Open with' and the version of the program now installed on my computer isn't even suggested as an option and when I browse for it, the file wont open with it anyway

    On Windows (don't know about Mac), the latest version will always take over the file association, and become the default for indd files. It's impossible to change it.
    But there is a plugin for ID that makes this possible. Never tried it myself.
    https://www.rorohiko.com/wordpress/downloads/lightning-brain-soxy/

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • How do I upload and attach the file to Service Request

    [This thread was migrated from the On Demand Developer Forum in the old Siebel Community]
    drangineni
    New Contributor
    Hi,
    I am trying to upload a file and add it to a Service object as an
    attachement. I greatly appreciate if you could provide any code or
    sample...
    Thanks.
    Daya
    Product: CRM OnDemand
    10-21-2006 10:58 AM
    Re: How do I upload and attach the file to Service Request...
    BigSlick
    Valued Contributor
    On Demand doesn't support adding attachments via web services. One
    solution I've seen is depending on the scenario is to create a web link
    field on an object that's based on a custom text field. Your web service
    can populate that custom field and the web link can generate a dynamic
    link to the file in On Demand's UI. However, this depends on where the
    attachment is located and if the user needs some sort of firewall access.
    Hope this helps
    -BigSlick
    10-23-2006 11:43 AM
    ==============================================================================
    Click on the board or message subject at the top to return.

    Yes this still holds ture.
    Bardo

  • I didn't safely eject my external hard-drive and now my files are not showing up on my other computer?

    I didn't safely eject my external hard-drive as my imac was in sleep mode and I thought it was shut-down. Now I have turned up to uni and plugged my hard-drive into the uni computers (apple) and the word document I was working on last night (before my computer went to sleep mode, and it may still have been open, I cant remember) is gone.....
    I have phoned home and got a family member to try and recover the file. They said they can see it when they open Word under recent documents, however its "ghost" and nothing happens when you click on it.
    My question is, when I go home and plug my hard-drive back into my imac, will I be able to recover this word file? or have I lost it forever?

    I only saved it to my external hard-drive and saved it at the completion of working on it. However left the document open, went to dinner, and this morning pulled the hard-drive out, whilst the computer was asleep not shut-down and now the file doesn't appear.
    I thought when I clicked save then it saved straight away, therefore anything i do after that point (ie a un safe ejection) shouldn't make a difference. Clearly, no matter if you saved the document, if you un-safely eject the hard-drive then the file is lost anyway?

  • TS4009 How do I clean up mail in my icloud?  I have already deleted old mail on all devices, and emptied the junk & deleted files, but it still shows that I am at max on my icloud. What do I do to free up space? (photos & apps do not take up that much roo

    How do I clean up mail in my icloud?  I have already deleted old mail (from all my e-mail accounts) on all devices, and emptied the junk & deleted files, but it still shows that I am at max on my icloud. What do I do to free up space? (photos & apps do not take up that much room).  When I go to manage storage on any device & it will display how much room each program or app is using, it still shows that my e-mail is taking up the most room.  Is there a way to actually log on to the icloud server to manage what it stored there?  If so, how do I do it?  Also, on a related subject,  why does my mail not sync accross all devices?   ie. when I delete an email on one device, why do I still see it on all my other devices?  How can I change this?
    I have an iphone5, ipad2, ipod 4th gen, ipod 3rd gen, all running on my same apple id - but I have a PC not a Mac home computer - is this part of the problem?  Looking to upgrade to a Mac sometime this year...
    Thank-you for the help!

    beckyfromoz wrote:
    I do have the Time Capsule and spoke to Apple Care here in Sydney about it yesterday.  They told me my mail is not backed up there unless I create a special folder. I just tried ringing them again but Apple Care is closed today...
    Mail is backed up automatically. If you make backups automatically, open Mail application and then, open the Time Machine app (in /Applications/Utilities). You will access to the Time Machine interface, and you will be able to see all your mails of all the backups you have, and you will be able to restore them. It means that your mails are backed up onto the Time Capsule

  • I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    From the names I'd guess they are temporary files. If excel is running, quit and try again. If they still won't move or delete reboot. If they still won't move or delete...kill a chicken at midnight under an oak tree?

Maybe you are looking for