RoboHelp not detecting installed Framemaker

I have a RoboHelp 8 project and want to import a file from Framemaker 6.0p405.
I even opened the Framemaker book and from Framemaker launched RoboHelp. I am still getting the message:
"This operation cannot be completed without FrameMaker. Please install FrameMaker and try again."
In the RoboHelp help, it says:
"FrameMaker book files created in a version earlier than FrameMaker 6 (BK) can only be imported into RoboHelp; they cannot be linked."
So, I'm assuming that I should be able to import a Framemaker 6 file into RoboHelp 8.
Best regards,
Debbie
P.S. I saw an earlier thread about this (http://forums.adobe.com/thread/458788?tstart=0), but I wasn't able to fix that problem with that thread.

If starting RH8, creating a blank project and importing the FM6 book doesn't work, try saving the FM6 files as MIF and try importing them into RH8.

Similar Messages

  • Win 7 System Health Report Does Not Detect Installed Antivirus Applicatio​n

    Hello all,
    To test your PC for this problem go to: Control Panel > Performance Information and Tools > Click on the Advanced tools link (top left menu) and then click on the Generate a system report link (at the bottom of the page). Now, about 60 seconds later, your report should be completed and you should be able to see if your antivirus was detected (or not).
    In my case, it was not detected (as is the case for many other Win 7 users), so if that bugs you and you want it fixed, please follow this link to obtain a temporary patch from Microsoft:   http://support.microsoft.com/kb/2482947
    Please note the Microsoft cautions and recommendations before downloading and installing.
    Good luck!
    Solved!
    Go to Solution.

    Hope the above solution helps others who are experiencing the same isssue.

  • Creative cloud not detecting installed program

    dear anybody
    anyone having issue like me? my creative cloud not detected my programs like photoshop, indesign etc. just wrote install. ive installed on my pc
    regards

    I am having the same issue.  I can't uninstall.  I get the following message" Couldn't uninstall Creative Cloud for Desktop.  Creative Cloud applications installed on your computer require it to function correctly.
    Attached is the spinning I get with no applications visible.  I can't update anything.  It's been spinning like this for four days.

  • Windows 7 does not detect & install HP Colorlaser 2600n printer connected to wireless network

    I have an HP Colorlaser 2600n printer connected to a router set up for my wireless network. I have tried to installed the printer through the wireless network, as I have done with other computers, but my new HP dv7 laptop does not find the printer in the network. Just to check, I installed the printer directly to the laptop through an usb connection and it work, but nothing I have tried has work to access the printer through the wireless network. If I use HP installation CD and check network installation, the setup program does find the printer, but once I finished, the printer does not appear in "printer and devices". Any suggestion on how to solve this situation? Thank you in advance for your help!!

    Download and run this: http://h20180.www2.hp.com/apps/Nav?h_pagetype=s-92​6&h_lang=en&h_client=s-h-e17-1&h_keyword=dg-NDU&ju​...
    Your security system's firewall is likely in the way.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Web-cam is not detected yet installed

    Hi!
    I m doing a program tat can capture movie from available video capturing devices, i hav installed web-cam, but while searching for the devices available(Detecting the device) , it is not identifing the device. And still if i m giving direct the device info to the program("vfj//0")then movie is captured from web-cam.
    Program is listed below which is not detecting the web-cam:
    public void setMainSource(){
    setProcessing(false);
    VideoFormat vidformat = new VideoFormat(VideoFormat.YUV);
    Vector devices = CaptureDeviceManager.getDeviceList(vidformat);
    CaptureDeviceInfo di = null;
    if (devices.size() > 0) di = (CaptureDeviceInfo) devices.elementAt(0);
    else {
    /* I got exception here */
    JOptionPane.showMessageDialog(parent,
    "Your camera is not connected", "No webcam found", JOptionPane.WARNING_MESSAGE);
    return;
    try {
    ml = di.getLocator();
    setMainCamSource(Manager.createDataSource(ml));
    } catch (Exception e) {
    JOptionPane.showMessageDialog(parent,
    "Exception locating media: " + e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
    return;
    Output:
    Web cam not found....
    So wht shd be the problem , nyone please explain the problem how to overcome from it.
    Thank you

    First of all sorry for spelling mistake i write ("vfj//0") rather then "vfw://0"
    Yeh! i read your code n your code is also giving the same error
    like
    Web cam not detected/installed(like something this).
    But still i hav attached cam n capturing movie from the code shown below:
    //This will not detect the webcam n directly captures the movie, try it out so now wht to do so tat will detect the webcam properly....
    CODE:
    import javax.media.*;
    import javax.media.util.*;
    import javax.media.format.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.control.*;
    class testing extends JFrame implements ControllerListener,ActionListener
         //Variables for gui
         public JButton play=new JButton("Play");
         public JButton stop=new JButton("Stop");
         public JPanel p1=new JPanel();
         public JPanel p2=new JPanel();
         Container c;
         //Variables for videocapturing
         boolean stateTransitionOK = true;
         Object waitSync = new Object();
         Processor p;
         ///Variables required to store the movie
         DataSink sink;
         MediaLocator dest = new MediaLocator("save_video.wav");
         ///methods
         public testing()
              super("Video Capture Demo");
              setupvideocapture();
              setupgui();
         public void setupgui()
              c.add(play);
              c.add(stop);
              addWindowListener(new WindowHandler());
              stop.addActionListener(this);
              play.addActionListener(this);
              setSize(350,350);
              setVisible(true);
              show();
         public void actionPerformed(ActionEvent ae)
              String str;
              str=ae.getActionCommand();
              if(str=="Play")
                   try
                        //Before starting capturing store the movie to the HDD
                        p.start();
                        sink = Manager.createDataSink(p.getDataOutput(), dest);
                        sink.open();
                        sink.start();
                   catch(Exception e)
              else if(str=="Stop")
                   try
                   //     sink.stop();
                        p.stop();
                   catch(Exception e)
         public void setupvideocapture()
              c=getContentPane();
              c.setLayout(new FlowLayout());
              try
                   p = Manager.createProcessor(new MediaLocator("vfw://0"));
                   p.addControllerListener(this);
                   p.configure();
                   waitForState(p.Configured);
                   p.setContentDescriptor(null);
                   p.prefetch();
                   waitForState(p.Prefetched);
                   c.add(p.getVisualComponent());
                   ///Intializing the saving procedure
              catch(Exception e)
                   System.out.println(e);
              public void controllerUpdate(ControllerEvent evt)
                   if (evt instanceof ConfigureCompleteEvent || evt instanceof RealizeCompleteEvent || evt instanceof PrefetchCompleteEvent)
                        synchronized (waitSync)
                             stateTransitionOK = true;
                             waitSync.notifyAll();
                   else if (evt instanceof ResourceUnavailableEvent)
                        synchronized (waitSync)
                        System.out.println("ResourceUnavailable");
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   else if (evt instanceof EndOfMediaEvent)
                        p.close();
                        System.exit(0);
              boolean waitForState(int state)
                   synchronized (waitSync)
                        try
                             while (p.getState() != state && stateTransitionOK)
                                  waitSync.wait();
                        catch (Exception e) {}
                   return stateTransitionOK;
         //Entry point
         public static void main(String args[])
              testing t=new testing();
    class WindowHandler extends WindowAdapter
         public void windowClosing(WindowEvent e)
              System.exit(0);
    This is working properly........ so plz if other option plz notify me.
    Thank you for helping me.......

  • Acrobat 9.0 shared review not working after FrameMaker 11 and RoboHelp 10 are installed

    Acrobat professsional 9.0 shared review function was working fine when I was using FrameMaker 7.2, but after I install FrameMaker 11 and RoboHelp 10, nothing happens when I select "Send for Shared Review" or "Attach for Email Review", no error messages, no prompts, just nothing...btw, the system is Windows XP SP3.
    Is it a compatibility issue? Does the same issue happen to you and how you fix this? Thanks for your help..
    Stephanie

    We are getting this on certain machines and not others.  I can't seem to be able to find a rhyme or reason.  We are trying to initiate reviews on a shared internal network location.
    A few questions for the forum:
    Does Owner rights matter on the share that the review file is to be stored in?  Currently we have Modify rights for all participants and initiators.
    Does it make a difference which updates are installed past 9.0?  Does it make a difference if Pro and Reader are installed?
    Can someone confirm that the Acrobat.com is required to be installed on the machine?  I noticed on the latest installs of reader acrobat.com application is not installed.
    I'm posting this now because I haven't seen a clear cut answer to:
    Could not save the shared review-enabled PDF file

  • Error message "The Printhead appears to be missing, not detected, or incorrectly installed"

    HP Officejet Pro 8600 e-All-in-One Printer - N911a
    I've had this printer for awhile and it has worked perfectly. 
    Just out of nowhere...
    I'm getting an error message that says "The Printhead appears to be missing, not detected, or incorrectly installed" . A short animation plays but i can't figure out what it's tell me to do.
    Please help!

    Hi @AjoyBrooks,
    Welcome to the HP Forums! 
    I see that you are getting the Error message, "The Printhead appears to be missing, not detected, or incorrectly installed." On your HP Officejet 8600. I am sorry that this has occured, but I am happy to help!
    Please take a look through this printhead guide. A 'Missing or Failed Printhead' Error Message Displays on the Printer after Installing a New Printhe....
    Hope this guide helps, and please let me know if you have any further issues!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • 5th generation ipod not detected by my windows xp.  works fine on other pc.  performed necessary steps to remove and reinstall itunes but having same issue. is there a driver i can download to pc then direct to that specific location when installing?

    5th generation ipod not detected by my windows xp.  works fine on other pc.  performed necessary steps to remove and reinstall itunes but having same issue. is there a driver i can download to pc then direct to that specific location when installing?

    I have a similar issue - my iPod nano connects and is visible in Device Manager yet invisible in My Computer and iTunes. I've tried everything I can possibly think of to try and solve this myself, all in vain.
    Mine is a nano 4G. I've been using it for quite some time without the slightest problem. I have been using WINAMP instead of iTunes to manage my darling nano.
    Then, one fine day I bought a new computer and the nano would not show up in My Computer, though the nano display shows "Do not disconnect". On my old computer it worked (and still works) absolutely fine with win XP as well as with win7 (the later I currently use on my new/problematic computer, which I bought last summer and that's how long I've had this problem).
    Of course, after several first attempts I gave up and installed iTunes. I've tried using the Apple support article "iPod not recognized in 'My Computer' and in iTunes for Windows":
    - reset
    - fully charged,
    - cable works fine on two other computers
    - in normal or disk mode makes no difference
    - tried to find anything useful in the diagnostics mode
    - reinstalled iTunes several different times since then to the latest version
    - I've unplugged every other USB device except for my mouse and keyboard and tried several different USB ports on my motherboard (USB 3.0 and conventional), as well as trying different USB- related options in my BIOS.
    - I've never used any Mac with this ipod
    - I've tried fiddling with the win7 Services by stopping and restarting them and of course
    - uninstalling the iPod drivers in Device Manager. After such an uninstall the ipod would automatically be recognised and "ready for use", i.e. being invisible in My Computer.
    - Attempted to find any possible third-party conflict with msconfig or the possibility that my ipod is being confused for a network drive (for which I've disconnected my HDD, leaving only my SSD with the OS).
    Sometimes, iTunes would note that iPod service (or something, can't remember exactly) failed to install properly and asked to try and repair it. I would click YES! and voila - no change! The ipod would rarely show up in iTunes on my problematic computer like this:
    iTunes would warn me that the nano would need restoring so I would try and do it on my haunted machine upon which iTunes would freeze like you seen in the picture.
    Despite this, I've updated and restored the nano on my father's computer to the latest version without any problems. This though, did not solve my problem in any way.
    I can load music to my nano through my old computer (which for me is a real pain and hassle) and the gadget works normally in terms of its disconnected functionality.
    I've taken my nano to the local service for repair and they said it was fine. Mercifully, they didn't charge for the diagnostics service (gee, thanks for not ripping me off!).
    Here are two screengrabs from my Device Manager
    and Devices and Printers screens on my comp:
    That is my sad story as far as I can remember. It's most likely something with the drivers or something along those lines though I'm out of ideas at this point.
    If you think you have any idea PLEASR HELP, I'M DESPERATE!

  • Can't install Win 8 - Satellite Pro C660 does not detect HDD

    Hello,
    My HDD has died, so i decided to upgrade my Satellite Pro C660-1D9 to an SSD.
    I made a bootable USB with Win8, and booted just fine.
    The problem is that it does not detect my SSD so i can proceed with the install.
    SSD shows up in BIOS, but not in Windows install.
    It says there's a driver missing.
    I downloaded AHCI drivers (XP, only ones available) and even then, after selecting the only driver that appears, it says no new devices found.
    I tried changing SATA mode from AHCI to Compatibility mode and it's the same..
    What can i do?
    Thanks for the help.
    Best regards,
    Bruno Moreira

    Older Windows XP required an AHCI driver from Intel but I think this isnt a missing SATA driver issue because as far as I know Windows 8 as well as Win 8.1 already contains the drivers in order to recognize the HDD or SSD drive.
    Furthermore the OS installation should be possible even if the driver would not be added... for this procedure you have to use the "compatibility mode".
    As you said, the compatibility mode did not work too, so I think there is another problem.
    However, Toshiba driver page provides also an Intel RST (Intel Rapid Storage Technology) driver (Windows 8 - Upgrade) which you could try to add while OS installation.
    But Im wondering if you would be able to install this Win 8 on common SATA HDD.
    Did you try to format the SSD drive using another computer and then to install Win 8?
    Try it out.

  • Mac Pro not Detecting Bootable USB Drive to Install Snow Leopard 10.6

    Hi
    I have to Mac Pro 2 x 2.8 GHz Intel Xeon. I have been running Leopard on them. I wish to install snow leopard, so i took out my USB HDD where I have made a Bootable Partition with snow leopard. I have used this in the past on all my machines to install snow leopard. Now when I try to install Snow Leopard from this on my mac pro, it does not detect in the "Option Boot" start up menu, it only shows my leopard disk. If I got to start up disk in system preference, then it shows my Snow Leopard disk, but when i select that as start up, it still boots to my Leopard..
    Since I am doing a fresh Install , I have another HDD installed, formatted for snow leopard. When I launch snow leopard installer from Leopard and select install in the new drive, it does some installation , but when restarting  it goes to my leopard again.
    This is the case on both the Mac Pro;s, but not on my laptops, I tried on my air and my macbook pro, and my friends mac book pro, it instantly boots up to the usb drive with snow leopard.
    So is there anything im missing ? Or is there something wrong with my Mac Pro's?
    I dont have the snow leopard DVD, else I would have tried that too..
    Please advice asap!!
    Thanks
    Sa1

    Hey
    Thanks for the reply!
    I have two USB HDD, with the copy from snow leopard dvd, and both are formatted in GUID, they work fine on my laptops and even the old mac mini, just not working on two identical Mac Pros.. Its very strange, as it keeps booting to leopard, and if I remove leopard Disk, and just put the new one and connect the USB dive, its shows a folder with a "?" mark sign!
    And the USB just works fine after its booted to leopard, it even starts installing snow leopard to the disk i assign, but it does not complete the installation as it boots to main leopard drive..
    I have tried to reset PRAM on both machine, I have changed usb slot..
    I dont know what to do!

  • Hi, i purchased iphone 4s with ios 5.1 from saudi arabia.my iphone 4s is not detected in itunes 10.6 version although i tried it by re installing itunes.i use windows 7 ultimate on my pc.

    Hi, i purchased iphone 4s with ios 5.1 from saudi arabia.my iphone 4s is not detected in itunes 10.6 version although i tried it by re installing itunes.i use windows 7 ultimate on my pc.

    Refer to this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538

  • *SOLVED* Device not detected/ No driver installed for X-FI Fatal

    OK!!!! the only reason I signed up here was to post that I have (for me) solved my problem.
    Before I get into details this occurred on a fresh system with latest drivers for hardware used.
    The problem was installing my X-Fi card on my 680i m/b (striker extreme).. when I would install the driver it would simply crash the computer and when it started up the hardware was not detected to used the software and the device manager said no driver installed.. I tried everything.. I installed the driver in safe mode (yay it worked without crashing) then I booted for windows only to have it blue screen for a second and restart... repeating the cycle.. so i reinstalled windows again... I tried installing the driver different ways in windows.. nothing worked... I gave up...
    BUT!!!
    today while i was at work I decided I would try one last thing.
    this is what got it going. I have SLI 8800ultras that covered the PCI slot on the bottom of my board and I though I would try the card in this slot to see if it worked there... so I disabled SLI took out my bottom card put in the sound card in the bottom slot, installed the driver... It installed 00% no crash... even better it worked after the restart!!!... so then I had to test if it worked in the top slot so I powered down, moved it up to my top PCI slot and windows auto set the driver for it (as it was already installed) It worked in the top slot now... Finally I put in the second 8800 to make sure it worked with this slot in use... It still worked fine with SLI enabled. because I was unhappy with the mess I made installing drivers all the time as I did with the many crashes I decided to do a fresh install of windows making this card work from the start so here is what you need to do if you have a 680i board with SLI. this is exactly what i did with my fresh install.
    install only one GPU card..
    Put the X-FI in a different slot that isn't giving you problems
    Install windows
    Install service pack 2
    install your chipset drivers
    install sound card drivers
    power down, change sound card to permanent slot
    test - power down
    put in the second GPU card
    install GPU drivers
    Good luck you all having this problem.. I hope my solution helps you.
    Bryan

    I think I?got a similar?problem earlier today when I was messing around with?onboard audio?that I later removed and after unplugging a?USB headset.
    Have you checked the device manager, is there any higlighted hardware that has a exclamation mark next to it.
    I fixed the issue by simply uninstalling the WDM device with the exclamation mark and restarted.

  • Surface Pro 3 / "Windows did not detect a properly installed network adapter"

    Hi all,
    I've been running the Windows 10 Technical Preview (9926) on my Surface Pro 3 successfully
    since January. Unfortunately, I lost all internet connectivity today.
    The problem started when I noticed the type cover wasn't working (pressing keys on the type
    cover wasn't registering any typing on my screen) and my USB mouse wasn't working either. I tried removing and reattaching the type keyboard but this didn't fix the issue. I had to use the accessibility on-screen keyboard to sign into Windows (thankfully touch
    was still working). Once I signed in, I still didn't have typing or cursor ability, so I decided to restart the computer.
    Then it got worse. I noticed the Surface Pro 3 was stuck on "restarting" and wouldn't
    actually restart. Since it wasn't responding, I held down the power button for about 10 seconds until it turned off. When I turned it back on, the type cover and mouse started working again.
    Unfortunately, this is when the WIFI problems began. I had WIFI for a few seconds, and then
    I lost internet. I disconnected/reconnected but there was a yellow triangle telling me there was some sort of problem. So I restarted the Surface Pro 3.
    When it came back on, there were suddenly NO connections available at all. Opening the "Network
    & Internet" settings page gave me the message "Windows did not detect a properly installed network adapter". And here I am, without internet on my Surface Pro 3, borrowing my friend's computer so I can type this message (he is also running
    Windows 10 build 9926 on his laptop and is able to connect to my WIFI with no problems, whereas my Surface Pro 3 cannot even detect any networks). I have not dropped or damaged the SP3 in any way, and there have been no storms or power outages or anything
    of that sort. Any ideas what could have happened to the WIFI on my Surface Pro 3?
    Thanks for your help...
    Ethan

    Hi Ethan,
    Currently, there are a few compatibility issue between the current hardware and Windows 10 Technical Preview (9926 build), this is mostly related to driver compatibility issue.
    I suggest you download the latest network adapter driver package to install, when it is finished, check if it appears under Device Manager.
    Surface Pro 3, Surface Pro 2, and Surface Pro firmware and driver packs
    https://www.microsoft.com/surface/en-us/support/networking-and-connectivity/install-wireless-drivers
    You can check if you can install the latest firmware package for your device.
    Here is an article to talk about such things:
    Windows 10 January Technical Preview on Surface
    https://www.microsoft.com/surface/en-us/support/install-update-activate/windows-technical-preview#Known
    Regards,
    Alex Zhao
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I can not re install Adobe Acrobat 7.0 professional on my computer.  It is saying a qualifying product is not detected. I cant even get through using the customer service line they provide 800-272-3623.  This is the worst interactionI have ever had with a

    i can not re install Adobe Acrobat 7.0 professional on my computer.  It is saying a qualifying product is not detected. I cant even get through using the customer service line they provide 800-272-3623.  This is the worst interactionI have ever had with a company.

    Hi joej49728017,
    I am so sorry for the inconvenience caused. However this is just because Adobe Acrobat 7.0 is an outdated version & the now the activation server for it does not exist.
    Please refer to the following KB doc.  Error: "Activation Server Unavailable" | CS2, Acrobat 7, Audition 3
    The above link will help you to  install a special version that does not require activation.
    In case you further need any help, please let us know. We will be more than happy to help you.
    Regards,
    Aadesh

  • How to manually install driver? Not detecting sound c

    Hi,
    My problem is when installing off the cd and off the downloaded driver it will not detect a creative product. I have li've! 5. with windows SP2. All I want to do is install the driver, doing it the windows search way does not work.
    I want do MANUALLY do it, where are the sound card drivers located in windows so I can extract the files to there?
    KX project makes my front speakers sound like rear so that is not a fix.

    How to manually install drivers. Explore your installation CD or also the extracted creative downloaded web drivers (Use winrar to extract the exe file to your hard dri've)?Location of the "Creative Driver Update Utility"?X:\Audio\Drivers\?Double-click the file "Setup.exe"
    Make sure "Driver Installation" box is checked and also check the box "Overwrite existing shared Creative audio driver files"?Click "OK"?This will take sometime to install the drivers. You'll be?asked to reboot?your computer. Thats it!
    ?Message Edited by freesky on 08-25-200705:20 AM

Maybe you are looking for

  • Hide command in ABAP Objects

    Hi everybod, i got a small Problem with the HIDE command in ABAB Objects. I got a Method called write_on_screen( ). in this method i  got code like this: DATA:     test TYPE c. test = 'Hello'. WRITE: /0 sym_minus_folder AS SYMBOL HOTSPOT. WRITE: /5 '

  • Problems deleting a primary key field in a table.

    Hello Guys, I deleted a primary key field in a custom table by clicking 'delete row' icon and then tried activating it through se14 - database utility. It is throwing an error saying 'Primary key change not permited for the value table zxxxx'. What i

  • Creation of P.O.

    Hello Sirs,     I have to create a P.O. in SAP for the following scenario.What is the procedure? 1 st item - - Qty. 6nos. - Unit rate Rs. 1570---- Amount Rs.9420 2nd item--Qty. 4nos.-Unit rate Rs. 1349-- Amount Rs.5396                                

  • I have installed new HDD in macbook pro model mid 2010 , my laptop restarts after sometime, why ?

    i have purchased a laptop from friend , its MACBOOK PRO core i5 2.53(520M) , 500 GB , 4 gb , model mid 2010 , he took the hDD and i installed the new one made by toshiba sata HDD 2.5inches , the problem is laptop restarts after some time and to varif

  • Materialized View Operator

    Hi All, In which scenario's we can use Materialized View Operator as a Target. What are advantages/features by using Materialized View Operator as a Target. Regards, Subbu