Smaller images from linking Word doc not showing in RH8 Webhelp

I am using RH8 and linking Word Documents.  Will generate as WebHelp.  All images are pasted into the word documents using Snagit.  The images are varying in size and need to be that way.  It seems as though RH8 imports larger images as .jpg files and display fine but converts the smaller ones to .png files and they are not displayed.  Only a box is displayed saying the image file is missing for the smaller .png files. The larger .jpg files display fine.  Why are they coming in as different types?    Does anyone know of a work around to fix this?  Upon searching the forum for an answer I only found a script that will make all images one size.  Is there a setting either in Word or RH8 that needs to be adjusted?  Thank you for your help.

See Snippet 125 on my site.
If Word is treating the images differently when you paste, which seems odd, try inserting via Word's menus.
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • Image from blog entry page not showing up on 'home' page of blog

    My first blog entry went well. I created a blog first page, then created an entry, and dragged a picture to that entry. I saved, published, and all looked great. Even the comment area worked. But when I created a second entry page, and dragge a picture to it, and saved, the photo is not showing up on that first page of the blog, the one that reads like a list only with a picture and teaser part of the entry...See http://web.me.com/brendatharp1/brendatharpblog/OnTheRoad/OnTheRoad.html
    The entry listing is there on the first page, and when you click on the title link, it takes you to the entry page and the photos are there. I noticed that on the first page, the Sept 13th entry with photo is inside a text box of sorts - this was the layered paper template I used and then modified. Dbl-clicking to make that box interactive shows the black floating box for dealing with the placement of the photo in that list; but that box only relates to that one photo from the 13th. If I drag and drop the 15th's photo there, it just sits over the text and doesn't interact. AND I didn't have to do that with the first entry. Any ideas out there? Thanks much, Brenda.

    Does this thread help http://discussions.apple.com/thread.jspa?threadID=1711038&tstart=15
    I have experienced this and it was because I removed the placeholder and just added the image on the entry page. I duplicate blog entries and delete content to add new stuff so don't have to reformat every time, if you do that don't remove the image just add on the top - it should replace the previous image. Hope this helps, it is frustrating at times but the more you learn the easier it becomes.

  • Insert OLE Word doc not showing all pages

    Hi All,
    I'm running a test on this before I get all involved in it.
    I insert a multi page Word doc into my report.
    When I run it, it only shows the first page.
    That's the first problem.
    When I export it as a Word doc, it exports only that page
    and now it's become a non editable graphic. 
    I need it to be exportable to Word and editable.
    That's the second problem.
    Am I attempting the impossible ?
    Thank you,
    Jimmy

    Hi Jamie,
    Thanks for your reply.
    We have a Word document that gets sent out to about 400 schools.
    I'm trying to take some of the redundancy out of the task by inserting
    Institution Name
    Director
    Address
    etc on the header of the document so that my colleges
    won't have to look up each school, find the director, address,
    etc and manually type it all in.  Then the report gets exported
    to Word, where further editing is done.
    Also, the tables that they have built in Word must also
    retain their integrity, being imported into AND being exported
    from Crystal, as a Word document.
    I could do this easily, and have, using text boxes, etc.  Problem
    is, it has to be done in Word. (That's what they're use to working with 
    Oh, my set up is:
    Crystal 11.5
    Stand alone desktop, no network.  (Just me and the lone prairie ...)
    Am I expecting too much ?
    Thanks for the 3rd party info.  That explains a lot.
    Jimmy

  • Image from Oracle BLOB is not showing

    Hi all!
    Im trying to use this code:
    <?php
    //... etc
    $sql = oci_parse($c, 'select * from pf2.documents ');
    oci_execute($sql);
    echo "<table width = 200 border = 1 cellspacing=0 cellpadding=0>";
    while ($row = oci_fetch_assoc($sql)) {
    echo "<tr>";
    echo"<td style=background-color:#DDDEEE; align=center>";
    echo $row['SHORTNAME'] ;
    echo"</td>";
    echo"<td style=background-color:#DDDEEE; align=center>";
    print $row['FILENAME'] ->load();
    echo"</td>";
    echo "</tr>";
    echo "</table>";
    //... etc
    ?>
    Here im trying to select and publish an image from Oracle BLOB,
    but in Mozilla Firefox im getting just whong text:
    яШяа�JFIF��`�`��яЫ�C� $.' ",#(7),01444'9=82<.342яЫ�C 2!!22222222222222222222222222222222222222222222222222яА�МЂ"�яД����������� яД�µ���}�!1AQa"q2Ѓ‘Ў#B±БRСр$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzѓ„…†‡€‰Љ’“”•–—�™љўЈ¤Ґ¦§Ё©ЄІіґµ¶·ё№єВГДЕЖЗИЙКТУФХЦЧШЩЪбвгдежзийкстуфхцчшщъяД�������� яД�µ��w�!1AQaq"2ЃB‘Ў±Б #3RрbrС $4б%с
    Please help!
    P.S.: Im using PHP 5.2.10 under Wintel platform,
    Oracle 9.2.0.4,
    create table DOCUMENTS
    DOCID NUMBER(10) not null,
    SHORTNAME VARCHAR2(30) not null,
    FULLNAME VARCHAR2(250) not null,
    FILENAME BLOB not null,
    AUTHOR VARCHAR2(30) not null,
    CREATIONDT DATE not null,
    VERSION VARCHAR2(10) not null
    Edited by: user502299 on 28.09.2009 5:33

    I am having a similiar problem. I have created the image.php file:
    <?
    $query = "select a.image_file FROM officer_image a, officer_info b where a.officer_id=b.officer_id and b.officer_lname like 'LEDEZ%' ";
    $stmt = @OCIParse ($db_conn, $query);
    @OCIExecute($stmt, OCI_DEFAULT);
    @OCIFetchInto($stmt, $arr, OCI_ASSOC+OCI_RETURN_LOBS);
    $result = $arr['BLOB'];
    @OCIFreeStatement($stmt);
    @OCILogoff($conn);
    $im = @imagecreatefromstring ($result);
    if (!$im) {
    $im = imagecreate(150, 30);
    $bgc = imagecolorallocate($im, 255, 255, 255);
    $tc = imagecolorallocate($im, 0, 0, 0);
    imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
    imagestring($im, 1, 5, 5, "", $tc);
    Header("Content-type: image/jpeg");
    Header("Content-Disposition: attachment; filename=filename_".uniqid(time()).".jpg");
    imagejpeg($im,'',100);
    imagedestroy($im);
    ?>
    And then in the actual search web page:
    <?php
              $tname = $_POST['lname'];
              $lname = "{$tname}%";
              $id = "1";
              //$query = "SELECT officer_id, image_file FROM officer_image WHERE ID='.$id.'";
              $query = "select a.image_file FROM officer_image a, officer_info b where a.officer_id=b.officer_id and b.officer_lname like 'LEDEZ%' ";
              //oci_bind_by_name($sql, ":bv", $lname);
              //oci_execute($sql);
              $stid = OCIParse($conn,$query);
              Header("content-type:image/jpeg");
              OCIExecute($stid, OCI_DEFAULT);
              while($succ= OCIFetchInto($stid,$row)) {
                   foreach($row as $item) {
         $blob_message = $item->load();
                   // Output the image
              //imagejpeg($blob_message);
              echo $blob_message . " " ;
              //echo "<img src="image.php?id='.$blob_message.'" border="0">. $rows['officer_id']."\">\n";
              echo "<br /><br />";
                   // Free up memory
              //imagedestroy($im);
              //while ($row = oci_fetch_assoc($sql))
    ?>
    Can anyone help?

  • Linking Word Docs in RH8 - Need Workflow Critique, Best Practices Tips, etc.

    Me: TCS 2
    Writer 2: Word 97, Acrobat Pro 8
    Software industry
    Help File Specs: Using RH8 to output to AIR Help (prior to current project = CHM), approx. 500 topic legacy help system (apparently created several years ago from the Word U.G; no CSH, index, or glossary); project uses one master page and one CSS
    Project Challenges: Big new features being added at the 9th hour, deadline moved UP by two months, have just been given a writer to help document new features but she only has Word and Acrobat (and we both work from our home offices)
    After reading everything in the RH Help on Linking Word docs, Peter's info (RH8 Tour on Grainge.org), the related posts I found here, and watching RJ's demo on Linking vs. Importing, I've come up with a tentative workflow. Going to do some tests, but wanted to get this posted in the meantime.
    Workflow
    1. Generate separate Word file for each of the existing RH topics Writer 2 will need to update.
    2. Apply template to Word files that matches my CSS styles (?)
    3. Create Word template matching my CSS styles for Writer 2 to use for new topics.
    4. Writer 2 updates/creates content. Each Word file =One RH Topic.
    5. I delete the existing topics she now "owns" from the project.
    6. When she's done with her first pass, I link all of these into the project.
    7. When she supplies revised files, I drop them into the folder, then do "Update" (or "Force Update"?)
    8. She also supplies a commented PDF version of each file to me to say "XYZ.jpg goes here" or "Make sure to include this topic in the TOC". (From what I've read, images from Word to RH = headache, and I don't enjoy files names such as "Image0001"...already a big pain since this project originated in Word and my client is in love with screen captures...trying to "wean" them off.)
    Questions/Comments
    - I know you can bring TOC entries over from Word, but think I'll spend more time messing with trying to integrate into the "master" TOC than just manually doing it.
    - Can I just have Writer 2 use the Word Comments feature to pass info on to me, or would those show up in my output or cause some other issue?
    - Can Writer 2 use Word cross-references that would become hyperlinks to the correct topics in RH given above (or would all of her "topics" have to be in one Word file to do this)? Any way she can "code" text to end up creating a link to one of my topics, or am I going to have to do this?
    - Would I be better off generating one big Word file for her to edit, then telling RH to break it at a certain heading style instead of the 1-to-1 ratio I had in mind?

    Hi there
    In my own opinion, Panning is a nice attempt, but just doesn't cut the mustard. It's nowhere near as good as the panning one sees with Camtasia Studio.
    I might suggest combining Camtasia with Captivate for the ultimate development set. There are aspects Captivate shines in when compared with Camtasia, and there are aspects Camtasia shines in when compared with Captivate. So I say if you can afford it, go for it!
    Now I know that both packages are sort of pricey and not everyone can afford both. In that case you might want to try Jing, which is free to use. I've not looked very deeply at it, but it may offer some of what Camtasia does. You could then use that for your panning and enhance Captivate that way.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Creating a pdf from a word doc and the image and footer will not show

    I am trying to create a pdf from a word doc that has an image and footer. Neither will show in the pdf. Also getting this message "Adobe Acrobat Updater has not been able to check for updates recently. Check online to see if solutions are available from the Adobe website." My Cloud says it is updated.

    What was the Original?
    If it was from Word, chances are the top and bottom Margins were set too narrow. (should not be less than .5 inches even more safety 1" would be better). As for graphics. Check in Word preferences (may be called different in a windows machine) make sure in view and Print settings "Graphics" is checked (show Graphics and Print Graphics).

  • Importing a table from a word doc

    I have several tables I'd like ti include in the ibook i'm creating. If I use the "create page from word document" function I can easily upload everything else from the word doc, but if the table is long then more than half the data is off the page and there is no way to make it continue on the next page. Is there an easier way to make these tables readable? I've tried using the interactive image widget but it's not ideal..
    thank you!!!!

    It seems n imperfect process regardless, sorry.
    I've found there are basically two ways, the first being to rework the data into a compatible table manually on the iBA side, the second being to rework the table on the WORD side so that it is better accepted.
    The specific recipe frequently depends on your data and your skills, I think.

  • I download two free games from itunes, it is not showing up on my iphone. Help

    I downloaded two free games from itunes, it is not showing up on my iphone as an icon.  I see it when i have my phone linked to the computer,

    I think I may have confused you and I apologize. But you are also confusing me now.
    If you were not using restrictions before, then that is why the Allowed Content for Movies in in accessible. You can only access that if you had set a restrictions Passcode. If you do not have restrictions set, then it is a non issue and don't worry about that suggestion.
    Were you actively using restrictions on the iPad? If you weren't then you don't have to enable it now. That will not do any good.

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • Font changes when i try to create a pdf from a word doc

    I am trying to create a pdf from a word doc. I have tried multiple times and each time i do the font i used in the word doc gets changed on the pdf

    This seems to be a common problem... this is not the first time I have seen this. Unless it is a general system font, such as Arial, then it seems not to convert too well.
    So, if it doesn't matter what font, then just change the font.
    Hopefully, Adobe fixes this in the next year. xD
    Good luck
    -Alex

  • Word Docs not considered a "Kind" is "Documents"

    When using the finders spotlight I can add a filter to search for "Kind" is "Document" why doesn't Word doc files show up but can only be found if I filter on "Other". Is there a way to change this so that Word Docs are considered Kind=Documents?

    I almost NEVER use Word, but I do have Office 2004 for Mac (courtesy of my brother who works for M$ and gave me a copy), and I do have one document from last summer, and in mdls it shows
    kMDItemContentTypeTree = (
    "com.microsoft.word.doc",
    "public.data",
    "public.item",
    "public.composite-content",
    "public.content"
    I also have a buncha doc files emailed to me from Windows using friends and relatives, and they show exactly the same thing, Finder shows them in the Kind column as "Microsoft Word Documents"--I also have a big batch of older Word files, whose Kind in Finder is shown as "Word 97 Format (doc)" and whose TypeTree is identical to the newer Word files. The only MS cruft that doesn't show up is thingies from Entourage.
    I sure don't remember installing anything different--the only importer I have is
    /Library/Spotlight/Microsoft Office.mdimporter
    which is version 12.0.2 from 9/27/07. I think that was a default install by Apple, since all the importers date from about the same time, except the iWeb one, which was created a few months earlier than the others.
    Francine
    Francine
    Schwieder

  • How can I transfer text and format from a Word Doc to a new Pages Doc?

    How can I transfer text and format from a Word Doc to a new Pages Doc?

    Select, and Copy in the Word doc and Paste in the Pages doc. It may not be perfect. Importing (Opening) the Word doc is probably better than using Copy/Paste for large amounts of content.
    Jerry

  • Images of personas and themes not showing on getpersonas etc.

    When I try to view the personas.com site, the images of the personas do not show up on the web page. (This is not the same problem as not seeing my own persona change to the new one on mouse rollover - that form of previewing does work.) The same thing happens with themes on the themes page. Both sites are whitelisted for "install extensions or themes", and all adblock and ghostery etc turned off for these sites. I have also checked my hosts file - there is no mozilla or getpersonas entry. Sessional cookies allowed.

    You're welcome.
    A setting of 3 for the pref permissions.default.image means that you only allow images from the originating domain and block images from other (third-party) domains.

  • Image in MIME Repository is not showing on WAD or Webreport

    Hi,
    The image logo.gif is stored and can be shown in MIME Repository /sap/bw/Customer/Images. I have developed a webtemplate in WAD 7.0 addresses to those images by
    <img alt="logo" src="/sap/bw/Mime/Customer/Images/logo.gif />
    It is not showing i WAD nor in webreport when it is executed from WAD.
    I have tried <img alt="logo" src="bwmimerep://sap/bw/Mime/Customer/Images/logo.gif />
    it does not work neither.
    I have also tried to test the URL directly on the webbrowser  without success
    http:// (application server with port number)/sap/bw/Mime/Customer/Images/logo.gif
    What is the problem? How to make it work?
    Thanks and best regards,
    Zabrina

    hi,
    maybe the folder containing your logo is not served, so try this:
    tcode SICF and search if your folder is served or not (grayed), if it's grayed then right click the main service (sap) deactivate and activate again.
    you can also try to put your logo in folder under  /sap/bw/bex
    hope it helps.

  • Can Form Fields from uploaded WORD docs become Sharepoint columns ?

    Hello -
    We are in the process of uploading many Word docs from Shared drives to Sharepoint (2010 )
    Some of the Word documents have information stored in Form Fields. For Example : BuyerName & SellerName. These fields need to be used in SP for sorting, filtering etc.
    We have tried creating columns on Sharepoint with the same names (BuyerName & SellerName) but the information from the Word docs does not display in the corresponding Sharepoint columns once the docs are uploaded.
    Any advice on how to accomplish this would be greatly appreciated !

    Check if this helps you
    http://office.microsoft.com/en-in/sharepoint-help/use-external-data-columns-in-a-word-document-HA102847511.aspx
    http://www.ilikesharepoint.de/2013/07/sharepoint-connecting-metadata-in-office-documents-to-sharepoint-library-columns/
    http://solidspace.ie/index.php/how-to-insert-sharepoint-metadata-into-your-word-document-using-quick-parts-and-content-types/

Maybe you are looking for

  • Empty error dialog when trying to sync (Windows 7 x64 + itunes 9 and 10)

    This post:http://discussions.apple.com/thread.jspa?messageID=11692653 describes my problem, but their solution did not work for me (setting Outlook as defauylt and use iTunes 9.2.0.61). Basically what happens is that every 10 minutes or so, an error

  • How to Show a Model Dialog box in a JApplet

    I have a JTable in a JApplet. I need to display a JDialog box as a Model Dialog. The JDialog expects a Frame as parent. How do I create a Frame and show my own dialog box? without a parent Frame the dialog shows up as a Modeless dialog box. Any help

  • Re: Development problems

    I've seen this sort of behaviour on two occasions. The first is when the partition being started does not have enough memory and rather than complain as you would normally expect simply grinds to a halt. Its worth checking the ftexec and node manager

  • LaserJet4 with mac os 10.6.8 useing ethernet

    I have a MacPro (intel) running OS 10.6.8.How can I get the printer to work from Ethernet port on my Mac to the JetDirect card Ethernet port installed in the Printer. Don't know which setting to use in the ADD PRINTER dialog box.Thanks

  • Macbook Air 13" Core 5i Wireless problems

    I just got my new MBA yesterday (2011-07-25) and I rapidly noticed a problem with the wireless connection and 5Ghz bandwith. When I connect to 802.11n band the connection fails few minutes after or just does not work... but it connects to the router.