Reinstalling Help Files With Pacifist

I have been having trouble with the Blank Help Window problem and have tried all the minor fixes with no luck (trashing preference files, etc.). The trouble is usually connected to OS X help but occasionally affects the help connected to other apps as well.
One of the folks who offered advice told me to use Pacifist to reinstall the Help Files in hopes this would cure the problem. I decided recently to follow his advice and try reinstalling the Help Viewer file from Install CD #1 by using Pacifist in hopes that it will fix the problem for once and all.
So I used Pacifist to open the OS X Install disk and then I searched for the file "Help Viewer" using Find. When Find was done there were 16 Help Viewer files in the sidebar window. All but 1 of them had .app tacked on. The one without .app was simply listed as Help Viewer.
Does anybody know whether I select and reinstall all of these files or just some of them?
Thanks!

Check out the following for assistance:
http://www.thexlab.com/faqs/helpviewer.html

Similar Messages

  • Reinstalling PAM package with Pacifist

    I've been reading on the forums about a Terminal problem I'm having relating to PAM - how can I simply just install the PAM package with Pacifist? Where exactly can I find the PAM package?

    Check out the following for assistance:
    http://www.thexlab.com/faqs/helpviewer.html

  • How can build help file for right to left and non english language

    hi erverybody, i have a big problem ,please help me
    i creat a c# appliction with vs.net2005 and i want to write
    help file for it .i need a software to creat help file for non
    english language(such as persian or arabic) and right to left
    support . i tried many helpware chm builder tools but each of them
    made a problem .i dont know what to do .what is the best solution
    for creating help files for right to left and non english languages
    how can i build my help file with f1 helping ability .thank u
    so much
    Text

    Hi Mr_Sia and welcome to the RH community.
    You could try looking at the HAT Matrix. This is a comparison
    of all the help tools around. Click
    here to go to it.
    RoboHelp itself, whilst it does support over 35 different languages
    does not support Persian or Arabic.

  • Where is the help file in itunes

    no help file with itunes 64 bit download

    The newest iTunes version has no Help option.  Why?  And, no ability to find out the version number.
    You may need to bring up your Menu Bar to see the Help menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:
    Once you've got your Help menu showing, go "Help > About iTunes" and wait for the version number to scroll up from the bottom of the screen, as per the previous versions.

  • Call help file in a form

    Hi!
    I have a form where i have a button to call a help file. I've create my help file with RoboHelp and then generate it to Oracle Help. But now what i want to know is how can i call my help file? What's the function to call the file?
    Thank and sorry for my bad english :-)

    This is the easiest (IMHO) way to create help for your forms application:
    1. Deploy your generated help in OC4J container (OC4J_Help using application-root /ohw/ for example
    2. Write code like this in your KEY-HELP trigger
    url := '/ohw/help/?topic='||:SYSTEM.TRIGGER_FORM;
    WEB.SHOW_DOCUMENT(url, target);
    you can put this code into .pll of course

  • Regarding Help file style

    Hi all,
    I am new to RoboHelp. We created  "Application Help" project and generated .chm file sucessfully.Every thing is working fine with generated help file.
    Check the MicrosoftWord2007 help file by click on F1.My client wants the same look and feel with my help file.
    Does any one know if it is possible to generate the same look & feel help file with Adobe RoboHelp. If yes what type of project should i select from the availabe projects list and how can we generate?.
    Any suggestions would be appreciated....

    Hi madhubmk and welcome to the RH community.
    I dare say most of what MS offers could be achieved by RH. Bare in mind that MS can afford to throw resources into their help documentation to come up with a heavilly customised look and feel. That is something that most places can only dream of. MS help uses a customised window, lots of DHTML drop downs, custom icons, etc. all of which can be handled by RH. I'd go back to the client and get them to highlight exactly which elements they like and then go from there.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

  • My compiled help files was working and now is broken in LabVIEW 2009

    I've created a .chm file for distributing an add-on VI Library. In order to get my product certified as "LabVIEW compatible", a help file with pretty good documentation is required. Using the Microsoft Help Workshop, I have created a .chm file that works in LabVIEW 8.5 and 8.6. Once I distribute to LabVIEW 2009, the javascript portions of the help file fail. These functions are:
    1) Place on Block diagram
    2) Find on Functions Palette
    3) Open Example
    I have determined that this is due to a variable written in NI glang.chm file. The file internal to the chm file is called "lvversion.js" and contains a variable named "lvversion". The marketing decision to name the product "LabVIEW 2009" has contributed to this problem since this variable is equal to "9.0.0", yet the path is (typically) C:\Program Files\National Instruments\LabVIEW 2009\help
     I originally decompiled NIs glang.chm file to analyze the javascript functions that are required for the above 3 buttons to work.I found that NI hardcodes the URL of the help services in a file called "helpserver.js" to be something like "http://127.0.0.1:3580/National%20Instruments/LabVIEW/LabVIEW {major-version}" where major version is "8.5" rather than "8.5.1"
    A call to the function "openProj" would then look something like:
     http://127.0.0.1:3580/National%20Instruments/LabVIEW/LabVIEW 8.5/OpenVIFromHelp?PROJ=myProject.lvproj
    NI hardcodes these URL in glang.chm::/helpserver.js, and I would gladly read them directly if Javascript were less crippled. Since that hasn't worked yet, I did a regular expression in javascript to determine the version based on the path of the document. This worked until LabVIEW 2009 where the path is (typically):
     C:\Program Files\National Instruments\LabVIEW 2009
    but the version in glang.chm::/lvversion is "9.0.0"
    Yes, I can workaround that by doing some javascript that says:
    if(version == 2009)
                version = "9.0"
            else
                version = version
     However, when 9.0.1 comes out, will it be LabVIEW 2009 still, or LabVIEW 2010? I'd like my javascript code to decoupled from any particular version so I don't have to relase a new version of my toolkit for each LabVIEW major or minor release.

    OK I finally worked around this. Here is some javascript code that will look for a file called "lvversion.js" inside the <LabVIEW Directory>\help\glang.chm file. save this as a javascript file named "myjavascript.js"
    var path=getPath();
    function getPath() {
    path = unescape(location.pathname); //replace %20 with " ", etc.
    path = path.replace("@MSITStore:","");
    path = path.replace(/\w+.html/,""); //strip off .html file
    path = path.replace(/\w+.chm::./,""); //strip off .chm file
    //Write javascript paths to page. Helpserver URL is hardcoded in each LabVIEW version
    document.writeln("<script src=\"ms-its:" + path + "glang.chm::/lvversion.js\"></"+"script>");
    document.writeln("<script src=\"ms-its:" + path + "glang.chm::/helpserver.js\"></"+"script>");
    return path;
    Then refer to it in an html document that will be compiled into a .chm file along with the javascript.
    <script src="myjavascript.js" type="text/javascript"></script>
    Now when you call functions from NI's glang.chm::/helpserver.js file, you won't need to prepend and URL or path information to the function to determine which version of LabVIEW you are in. I tested this on 8.5, 8.6, and 2009 and it now pulls up all my examples properly in all of those versions. The following demnostrates a call to "openProj" which opens a project containing all of my examples from a javascript button in the detailed help .html file that gets compiled into the .chm file:
    <p class="Body">Refer to the Read From Mobile Registry VI in the <span class="Monospace">labview\user.lib\mobile_registry\examples\Mobile Registry Examples.lvproj</span> for an example of using the Close Registry Key VI.</p><p class="Body"><a href="javascript&colon;openProj('user.lib%5C%5Cmobile_registry%5C%5Cexamples%5C%5CMobile%20Registry%20Examples.lvproj');"><img src="minibutton.gif" border="0"></a>&nbsp;Open example&nbsp</p>

  • Help file for the Plug and Play driver of Agilent Technologies E5071C

    I just download the Plug and Play driver of Agilent Technologies E5071C from the below link:
    http://sine.ni.com/apps/utf8/niid_web_display.model_page?p_model_id=5692
    I find that there is only some examples and not any help file with detail description for each input of those VIs. Although there is brief description for each VI when I press "Ctrl+H" on the VI,I still can't figure out how to use this driver. :-(
    Is there any help files with more detail description?
    Or any related examples for my reference? I hope to measure the S11 and S21 of the SMA cables

    The driver implements the commands defined by agilent.
    So look in the agilent programmers manual to find the meaning and how to handle the instrument.
    greetings from the Netherlands

  • Did the Help Files Change?

    I have Flash 8 at work. But I was looking something up in the
    AS3 LiveDocs online and noticed that every class entry now has a
    little dropdown button to show/hide inherited properties, methods,
    events.
    I'm pretty sure this wasn't in the built in help files when I
    started using AS3. I remember looking at the the MovieClip class
    and that it only had, play(), stop() and the goto versions of
    those. And thinking, "Not much you can do with a MovieClip if you
    follow these help files!"
    So first question, have those always been there and I just
    missed them?
    Next question, did those get added to help files with the
    9.0.2 (or whatever) update?
    Final question, how awesome and helpful will that be? (Okay
    that is more of a statement!)

    To my recollection, it's always been there since I've had
    CS3. The AS2 version in the help files don't have that, but the AS3
    version does :) Yea, I think its awesome, you can go right to
    methods properties or even constructor in some cases.

  • What are "CPU Help Files" (custom install)?

    I did a custom install, since I don't need the extra languages, only need some printer drivers, etc. One of the optional items is "CPU Help Files". The details field just echoes "CPU Help Files", with no explanation of what these are, why I would/not want them, etc. Does anyone know?
    Doug

    Hi Doug,
    take a look at this thread:
    http://discussions.apple.com/thread.jspa?messageID=5789690
    It looks like these "CPU Help Files" are some sort of documentation.
    Hartz

  • I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    Hello,
    That means it can find the Hard Drive, or can't find the things needed for booting.
    See if DU even sees it.
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • CS Bridge when opening file shows " Some Application Components are missing from Application Directory- Reinstall".  Uninstalled with uninstaller, reinstalled from disc.  Message continues only in Bridge not in PS.  Please help.

    CS Bridge when opening file shows " Some Application Components are missing from Application Directory- Reinstall".  Uninstalled with uninstaller, reinstalled from disc.  Message continues only in Bridge not in PS.  Please help.

    What version of Bridge and Photoshop and what platform? Mac or Windows?  I can point you to a downloadable installer.
    If the cdrom was damaged, it may be the problem.
    You would uninstall and use the CC/CS Cleaner to remove any remnants before reinstalling.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    I'll be gone for most of the day, but someone should be able to help you if you get stuck.
    Gene

  • Please help! I defragged my hard drive and now Illustrator CS6 is trying to open all of my complex Illustrator files with a "Text Import Options" box as if they are text files, and they are not opening!

    Please help! Illustrator CS6 started trying to open all of my complex.ai files with a "Text Import Options" box as if they were text files, and they are not opening!  Help!

    Hi Monika,
    I have spent the last two or three days trying to do what you suggested.  I uninstalled Adobe 6 from Windows.  Some files that CS6 placed on my system during installation remained, including fonts and .dll files.
    I had to abandon the Cleaner Tool you suggested because in one screen it allowed me to specify removing CS6 only, but on the following screen it only gave on option to remove ALL Adobe programs.  I could not do that because I didn't have the serial number handy for CS3 in case I want to reinstall it at some point.
    I tried to get technical help with the Cleaner Tool problem but no definitive help was available, so I reinstalled CS6 again without having the benefit of the Cleaner Tool.  I tried to get the serial number for CS3 so I could use the Cleaner Tool but spent 2 wasted hours in chat.  Even though I had a customer number, order number, order date, place of purchase, the email address used AND 16 digits of the serial number, in two hours the agent couldn't give me the serial number.  After two hours I had nothing but instructions to wait another 20 minutes for a case number.
    Illustrator CS6 is still trying to open some backups as Text and otherNone of the problems have been fixed.  I have tried to open/use the .ai files in CS6 installed on another system and am getting the same result, so I don't think the software was damaged by the cleaner.  The hard drive cleaner is well-known and I've run it many times without any problem to previous versions of Illustrator or any other programs.
    When I ordered, the sale rep promised good technical support and gave me an 800 number, but after I paid the $2000, I learned that the 800 number she gave me doesn't support CS6 and hangs up on me.  Adobe doesn't call it a current product even though they just sold it to me about 3 weeks ago.
    Would appreciate any help you experts can offer.  If I can't solve this, the last backup I can use was from June and I will have lost HUNDREDS of hours of work and assets that I cannot replace.
    Exhausted and still desperately in need of help...

  • Help File not displaying with in SAP

    Hi
    Im trying to get the help file to work in SAP.
    i Have looked at where SAP is fetching the file and i have placed it there.
    But when i go into SAP and press F1 i get an error message ...
    "Navigation to the webpage was canceled
       What you can try:
         Retype the address. "
    Can anyone please help me with this one as to why it is not working?
    Thanks

    Dear Jonathan,
    Could you please try the following steps :-
    o Change the Help Settings from 'Shared Folder' to 'Local
    Installation' under Help => Help Settings.
    o Business One will then look for the Help folder on the local B1
    Client and not on the B1 Server.
    o This will only work if the B1 Client has the Help folder locally
    installed.
    o If not this could be manually copied from SBO_SHR directory to
    the client.
    o Alternatively all the B1 Clients will need to be reinstalled.
    Regards,
    Rakesh Pati
    SAP Business One Forum Team

  • Hi can anyone help with a mac that had magnet put on it. I turned it on and then off but a white screen appears with a file with a question mark on it?

    Hi can anyone help with a mac that had magnet put on it. I turned it on and then off but a white screen appears with a file with a question mark on it?

    File icon with ? mark on it means it can't read from the hard drive. The hard drive is now wiped or bad. If just wiped then you will need to reinstall your operating system, OS X. If bad you will need to replace the drive.
    Start with booting the computer from the OS X install DVD that came with your system. If the Mac came with Lion Pre-Installed then you use the Lion internet recovery system to reinstall (Hold down Command+r keys or Command+Option+r keys to boot the computer from over the internet to the Lion recovery HD system).
    Good Luck.

Maybe you are looking for

  • FlexUnit4.1 B2 upgrade breaks CI system - flexUnit.cfg issues?

    Folks, We have a working CI system which is currently using binaries from FU4.0 development snapshots.  When we last checked the releases page, we saw that 4.0 stable was out, but so were 4.1 Beta 1 and 2.  Testers within the company were requesting

  • Maintain language in FS00 G/L accounts

    I want to ad a new language to the G/L accounts with a mass upload. The problem is that in some case there are 2, 3, 4 or more in. When I create an LSMW a have to select  one line in the upload to fill. Is there an other way to do a mass upload witho

  • My itunes is not wirelessley recognizing any of my iphones or ipad, only when plugged in

    Neither my husbands phone, which is my old 5C or my new iphone 6 nor my ipad is being picked up by itunesany longer. It will recognize it when I plug the phone(s) into the MAC but not wirelessly Help!

  • Position texts in org model

    Hello all, Can someone suggest a function module that retrieves the position information for a user in SRM's org model? The information is shown in PPOSA_BBP, when double clicking on a position (objec type "S") and on the basic data tab below. There

  • Configuring Networking

    Hi All, I must be missing something. In my lab I have a HP Blade with two Flex-10 NICs.  This blade is installed with a fairly plain instance of Server 2012 R2 Core. In my SCVMM 2012 R2 I have a logical switch defined, port profiles for the uplinks a