Some images don't transfer from RH8 to the Word output

Why is it that some images don't transfer from the RH8 file to my Word output when I generate?
They do transfer to the Flash Help, but not to Word.
Some of them are small images - just shots of icons or tools - and others are quite a bit larger.
It takes me at least another hour to format the Word document after the output.

Hi Patti,
I have had similar problems of images "softly and suddenly vanishing away" during export from RoboHelp to Word. I never really solved the problem, but I did find some useful tips.
First you shouldn't embed your images; in the Printed Documentation Wizard you should select "Link to sub-directory"
This has the advantage that lost images are now replaced by a small red cross -- easier to find when reviewing.
Next, in Word, try Edit>Links. If you are lucky you will see something like this:
Notice that some links have a Source File of ../Images; they are the ones I was missing. For some reason the path to the image file is moved up one level.
I never found out why, but the workaround was simple: copy the entire Images directory and paste it one level higher in the directory hierarchy. A waste of disk space, to be sure, but it worked. The grabs above show Word2003 and RH8.
Hope this helps,
--- Derek

Similar Messages

  • I have spotty signal at my home, so some functions don't work until I leave the house. I noticed on the main screen, it says I have 54 emails, but when I open the app, I only have 4. I powered down and back up. No fix. What gives?

    I have spotty signal at my home, so some functions don't work until I leave the house. I noticed on the main screen, it says I have 54 emails, but when I open the app, I only have 4. I powered down and back up. No fix. What gives?

    Im having this same problem an my phone is about 3 weeks old. I am not sure about the voice over part though...I have not yet figured out how to work the voice recognition part of the phone...I am such a newbie with this phone. I did the power off/on suggestion, several times. I tried leaving it off for 10 minutes. Tried to reset with the power on/off and home button pressed at the same time. Charged battery. Still makes no difference. You cannot scroll any direction. Have to double click to open apps. Have to double click letters when texting or emailing in order to get the letter in the text box. Can scroll through app choices, have to click on the line with the dots in it and move from page to page. Can't access the settings - > general - > accessibility - because it won't allow me to scroll down to "general".
    Anyone help you with your fix yet?

  • My itunes files were deleted. I was able to use an old back up file to restore some but new downloaded purchases from iTunes for the past 5 months weren't in the back up. How do I get those back since I've paid for them one before and use the same account

    My itunes files were deleted. I was able to use an old back up file to restore some but new downloaded purchases from iTunes for the past 5 months weren't in the back up. How do I get those back since I've paid for them one before? Can you redownload? If so, how?? Please help as I'm missing over 500 previously paid for and downloaded iTunes song purchases.

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • I have purchased my i phone 5 one month back, unfortunately I have got some hardware problem like some part has been broken from inside, but the phone works without any issue, Did anybody face this issue?

    I have purchased my i phone 5 one month back, unfortunately I have got some hardware problem like some part has been broken from inside, but the phone works without any issue, Did anybody face this issue?

    If you believe there is a hardware problem, call AppleCare or make an appointment at an Apple Store if there is one nearby.

  • HT1345 I have a new iPodtouch 5th generation.  I currently have a 4th generation.  Is there an easy way to transfer from one to the other or should I start a new setup?

    I have a new iPodtouch 5th generation.  I currently have a 4th generation.  Is there an easy way to transfer from one to the other or should I start a new setup?

    Click here and follow the instructions.
    (95861)

  • Generating a square waveform of 100 KHz from one of the Anolog output channels of PXI-6713 ?

    Hi
    I am trying to generate a square waveform from one of the anolog output channels of PXI 6713.
    I am developing my application in VC++
    My requirement is a continous 100 KHz square waveform with 90% duty cycle and 1.5 V amplitude.
    The following is the code i have used (i have removed error handling code):
    ***** code *******
    i16 deviceNumber = 6; // PXI 6713 Device Id as per NI-MAX
    i16 deviceNumberCode; // to be returned by Init_DA_Brds function
    i16 chan = 2; // DAC channel 2
    i16 numChans = 1; // only one channel is used for
    i16 chanVect[1] = {2}; // DAC Channel 2
    f64 gain = 1.0;
    i16 binArray[10] = {0};
    i16 group = 1; // default for most of the devices
    u32 count = 10; // 10 data points
    // 9 data points ON and 1 data point OFF constituting 90% duty cycle
    f64 voltArray[10] = {1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,0};
    u32 iterations = 0; // Repeat waveform indefinitely
    i16 mode = 0; // Disable FIFO mode / delay mode
    f64 rate = 100000; // 100,000 points / sec
    i16 units = 0; // points / sec
    i16 timebase;
    u32 updateInterval;
    i16 whichclock = 0; // update clock
    i16 operation = 1; // Start waveform initiation
    Init_DA_Brds (deviceNumber, &deviceNumberCode);
    WFM_Scale (deviceNumber, chan, count, gain, voltArray, binArray);
    WFM_Group_Setup (deviceNumber, numChans, chanVect, group);
    WFM_Load (deviceNumber, numChans, chanVect, binArray, count, iterations, mode);
    WFM_Rate (rate, units, &timebase, &updateInterval);
    WFM_ClockRate (deviceNumber, group, whichclock, timebase, updateInterval, mode);
    WFM_Group_Control (deviceNumber, group, operation);
    If I try to generate 10 KHz waveform with the same 90% duty cycle and 1.5 V amplitude, the waveform gets generated continously....
    But for 100 KHz, itz generating continously....but only few waveforms....
    Is there any hardware limitations ? I've tried changing the value of the timebase ( points / sec) and update interval etc...
    plz help me
    thanx in advance
    sriram.

    Sriram;
    The best way to get started is to run one of the NI-DAQ shipping examples. You can find a good example at
    C:\Program Files\National Instruments\NI-DAQ\Examples\VisualC\Ao. Take the one named WFMDoubleBuf.c.
    On that example, you will just need to change the data written to the buffer to met your application's pulse train requirement.
    Hope this helps.
    Filipe A.
    Applications Engineer
    National Instruments

  • Some images don't load in Firefox 5.0, but show fine in IE, Chrome, Safari, & Firefox 3.6.

    Some simple GIF images don't display or sometimes only partially display in Firefox 5.0 running Windows 7, on my web site: <br>
    http://www.tulane.edu/~sanelson/eens1110/igneous.htm
    <br><br>
    The images are some of those on the right and side below "Origin of Magma". The images do show up in Firefox 3.6, IE9, Chrome, and the iOS version of Safari. What could be causing this?

    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Some images don't appear in iPhone, but do on desktop.

    Can someone download this PDF and let me know why the jpg images appear fine when viewing with desktop browser, but some images in the same document don't appear when viewing in Safari on the iPhone? Vector artwork and text show fine. Shows white space where JPGs should be.
    Specifically, pages 1 and 4:
    http://www.teamassociated.com/pdf/cars_and_trucks/TC6/Factory_Team/tc6ft_manual-mobile-4rg b.pdf

    I just heard about this day before yesterday at the InDesign Print and ePublishing Conference in Washington, DC. When using display on an iOS device JPEG 2000 is not supported. There are two flavors of JPEG: JPEG & JPEG 2000.
    Here's a Wikipedia article about JPEG 2000:
    http://en.wikipedia.org/wiki/JPEG_2000
    If I go to page 1 and 4 in your PDF and use Output Preview in Acrobat Pro (in Acro 9 > Advanced Print Production > Output Preview). Click on the Object Inspector tab and click on the image. It uses a JPEG 2000 filter.
    Since I don't know how the image was created and saved, I'll leave it to you to resave it as normal JPEG.

  • HT1386 I have tried syncing my music from itunes to my iphone 4s and over 30 says don't transfer. It says the files cannot be found. Why is this and how can I fix it?

    I have tried syncing my music from my itunes on my macbook to my iphone 4s and over 30 song won't transfer. It says the files cannot be found. Why is this and can I fix it?

    You can try to repair your library. Once you are sure the files are all taken care of, you can sync the phone to remove all of the music and then sync again to add it back. That should take care of the issue.

  • The google images format changed back from new to the old

    I used to have the new google images format where there were suggestions at the top of the page, you could magnify an image by clicking on it an scroll easily through photos. Something happened I guess and it's back to the old format where there are tiny thumbnails and in order to see it full sized you have to click on it, it leads you to a website and in order to see other pictures, you have to go all the way back to the google images results page. I've already signed in and out, cleared the cache and cookies and shut down the computer. What else should i do?

    Google's apparently aware of this glitch, and is pursuing a fix, ostensibly:
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&ved=0CCw QFjAA&url=http%3A%2F%2Fproductforums.google.com%2Fd%2Ftopic%2Fwebsearch%2FYrXCMZ s5cH8&ei=qLVHUpGcJvXI4AOG0YCADg&usg=AFQjCNG_vnpEpMbKLhMYQoGWB-lHFC0fpA&sig2=NCF3 TBoN4z4PTi2cgIV4yw

  • When dictating, can I insert punctuation with my voice or can it be done manually? If I say the word comma, will I get "," or will I get "comma" and is there a way to fix that?

    When dictating on Ipad, can I insert punctuation with my voice, as in if I say "comma" will I get "," or will the word "comma" appear? Can I manually insert punctuation as I'm dictating, such as: If you wouldn't mind, (tap on comma on pad), may I ask a question? (tap question mark on pad). OR, do I just say everything I have to say and then go back and punctuate by hand? Obviously, saying "comma" and getting "comma" is NOT going to help out my sentences!

    weird. When I do it, I have to spell out comma and period if I don't want the punctuation... I just tried the exact same phrase and got "As I said, please don't disturb me." Is there a setting under dictation that says something like "spell out punctuation"?

  • I have some files that I named "Classic Rock" After the word "Various" as been suggested. When synced to a reader card so I can put in my car Player; Its a GPS with a Jukebox feature. Some songs say the artist I have named and some songs say "Various" i

    Hello, I have a "Tom Tom" GPS in my car that offers a reader card slot for a feature called "Jukebox".
    I have synced my I Tunes library to the card.
    When installed in the GPS All my files play show info perfectly. HOWEVER the 4 or 5 files I have titled "Classic Rock" which I have entered as "Various" as been suggested. Half the songs show artists' name and the other half shoews the word "Various".
    On my computer all shows correct information but on the GPS it shows as explained.....WHY?

    Well, indeed that does not sound like a fun situation to be in. But, it is VERY good you are using Time Machine.
    Let me explain, that there are two options when it comes to storing files in iTunes. When you import files, it will either leave the file in its original location on the hard drive and iTunes will know its location, or it will copy the file and store it in Music/iTunes/iTunes Media/Music/Artist_Name/Album_Name/, IF you have the option enabled titled "Keep iTunes Media folder organized."
    I imagine you have it set to copy everything into the iTunes Media folder, which explains why your hard drive is filling up. Otherwise no extra space would have been taken up.
    Therefore, my recommendation is this:
    Quit iTunes first. Then navigate to ~/Music in Finder, then Enter Time Machine. Restore the ENTIRE iTunes folder in that location from a previous backup that occurred BEFORE this whole thing happened. Depending on how much space you have left on your hard drive, it may be wise to first delete the entire current iTunes folder. The restore could take a long time, depending on how much data you have in iTunes.
    This will guarantee you get back to a previous library, exactly as it was at that date and time. Yes, it may be a bit overkill but it is by far the simplest solution. Hope that works!

  • Why can't I sync my music without erasing my entire current iphone library???? Newly purchased MP3s don't transfer from my (authorized) laptop itunes.

    My desktop no longer works where previous MP3s and CDs were downloaded. I currently use my laptop now and cannot get recently purchased MP3s to sync on my iphone 4 without erasing my current iphone library and replacing it with what is on my laptop. I've searched and experimented with every possibility (it seems) without taking the "big step" of syncing my entire library. My current iphone library has 990+ songs and my laptop itunes library only has 381. I don't want to lose what I've got already. Anybody????

    There are third-party programs like those discussed here that can transfer non-iTunes purchased music to a computer.
    Copy music from Ipod to new computer...: Apple Support Communities

  • Titles don't transfer from iTunes to CDs I burn

    Is there a way to get tune titles in iTunes to transfer to a CD ???
    I receive audio MP3s of material that I must edit. They are emailed to my client's office. I then go to the office, and transfer the MP3's to CD. This allows me to bring the material to my studio and edit it on Final Cut Pro. The process of burning the material to CD also converts the MP3s to .aiff files, which FCP handles better than MP3s.
    PROBLEM IS that when I burn the MP3s to the CD, the title info on the MP3s doesn't transfe.r. The tracks are burned to the CD as Track 1, Track 2, Track 3, etc.
    I then have to manually input the original title info for each track once I have imported the tracks into FCP.
    Not an impossible task, but it'd be great if there were a way to have the titles transfer to the CD when I burn the MP3s to the CD.
    I assume that CDs simply don't allow for title info on the tracks. Even commercial CDs when viewed in iTunes, show Track 1, Track 2, etc., until you link up with the database, that I guess tells the computer "For this track that you're calling Track 1, show the name "Hard Days Night" or whatever the title.

    Yeah man, I'm hearing ya! I make mixes for my little sister on Itunes and send her the cd. When she imports it, she has no idea what the songs are she's listening to, and she's not good at entering the names, albums, artists manually. I really wonder why itunes has things happeinig this way. Kind of lame.
    GKat

  • E-mail addresses don't transfer from Windows Contacts to 3GS i phone

    In preparation for my new i phone 3GS I completed all details in Windows Contacts. On syncing using Itunes, via cable connection, all names,addresses and phone numbers were transferred but none of the e-mail addresses. Yet I can now enter a new contact in Windows Contacts and all the info, including the e-mail address is transferred to the phone. Similarly I can add the e-mail addresses direct to the i phone for my existing contacts and they remain on both the phone and Windows Contacts after syncing without any problem. I don't however relish typing all my e-mail addresses into the i phone. Can anyone help please. (In case it's relevant I previously had an o2 xda Zest operating Windows Mobile 6.1 which I may have synchronised at some time using Windows Mobile Device Centre but latterly this hadn't worked so I merely connected using the xda as a storage device)

    Can you clarify what your question was ? Its a bit hard to figure out.

Maybe you are looking for

  • If I uninstall/reinstall Firefox, will I lose my bookmarks?

    I want to uninstall then reinstall Firefox in an attempt to correct the following issues: (1) Firefox keeps prompting my user names/passwords, thus creating a security hazard; (2) Firefox is continually crashing. I want to know whether uninstalling f

  • Premiere Pro not able to import QT files?

    We are editing a film with RED material and that is going great, but we cannot inport QT files. We have installed all relavent codecs (ProRes, DNX) and installed QT7. All other QT related aplications on the computer can open QT files just fine, but P

  • GRN reversal in last period ie 12/2008

    Dear All, Our client is trying to reverse the GRN in last period of 2008 ie 12/2008.But the error appears as " In Plant 1000,post to current period 2009/01" Why the system not allowing? Regards

  • Widescreen DVD's

    Guys Hope you can help I've created a widescreen DVD project to help with a local charity and have had people report back that the sides/top/bottom are being chopped off. I've read somewhere this is due to the DVD not being intelligent enough to know

  • My iPad 2 sound

    My iPad 2 has been making me mad lately there is zero sound yes I checked if it was muted yes it works with headphones yes I restored it yes I reset settings... But it does not have a volume bar... Plays sounds when I blow into the charger some times