Fixing the path for images in RoboHelp 8

I am rather new to Robohelp, so please forgive me if this has been addressed in another dicussion...I have been searching and cannot seem to find what I am looking to describe.
I am working in Robohelp 8, and  creating a new help system by importing topics from a previous help system. The problem I am running into and I cannot see how to fix is that there are a couple of topics that have images where instead of the path for the image directed to a folder called "Images" in the main directory, it dumps the graphic into the project manager window when I import the topic. I tried viewing topics that don't have their images on the main project manager window, and comparing against the one that does, and I cannot see the difference. I have tried renaming the images and placing in the correct folders, and then inserting the images into the topics, but it still tries to look at the main folder and still dumps the image into the project manager.
Any help you can provide please share.

I am going to say yes (because it sounds like what I am trying to get at, but not sure).....I have tried deleting the images, and recreating, and then re-inserting into the topic, and they still go to the root of project. As I am going along, I am finding more and more.....so far there are 20 images that are doing this.  However, I also just did what you mentioned and dragged it and put it under the topic. But I am still confused as to why I would need to do this for some topics and for other topics the images don't appear at all (meaning they don't show under topics or root of project), they are just linked through the folder on the main directory. Does this image help more?
Left of picture above: The folder directory has a folder called Images, and this is where all of the images were stored and are stored for the new project.
Middle of picture above: The topic Horizontal Command had an image in it "image20.gif", and it was at the root directory and as you suggested I moved to the topic. Also see the topic circled Expand and Collapse Folders topic has the image circled at the left within it.
What I am trying to understand is why would the graphic from the Horizontal command topic dump into the root of the project, while the image from the Expand and Collapse Folders topic not show on the root project or even within the topic listed. (Which is what I prefer for all topics).

Similar Messages

  • Relative path for images in RTF templates

    Hi everybody!
    When I insert an image in a RTF template, I put its path into the web dialog, in order to see correctly the picture when I open the report from the xmlp server, in this way: url:{"http://servername/analytics/res/Images/image.bmp"}
    How can I make this path relative, in order to see the images even if the server name changes?
    Thanks so!
    Francesco

    Hi Tim,
    I am using BIP 10.1.3.3.2. I am able to access system variable CURRENT_SERVER URL.
    Steps:
    <?param@begin:CURRENT_SERVER_URL?>
    <xsl:value-of select="$ CURRENT_SERVER_URL"/>
    CURRENT_SERVER_URL is getting printed in BI Publisher. Value displayed is http://xx4697.xxx.co.in:9704/xmlpserver.
    Now we are importing xsl into RTF template. File aaa.xsl is stored at [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app]
    We have hardcoded the path for XSL in RTF. The path is <?import: http://xx4697.xxx.co.in:9704/aaa.xsl?>
    As we want to set dynamic path we changed hardcoded xsl path to <?import: {$CURRENT_SERVER_URL}/../aaa.xsl?> but it is not working. Sometimes BIP is taking local path of MyDocuments folder and sometimes Desktop path. If I put that XSL file in MyDocuments folder or Desktop, it is working fine. But ideally it should refer [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app] path...
    Thanks,
    Amit D

  • Is there a substitute tool path for "Image Adjustments Variations-" in Photoshop CS6 Standard Addition?

    Is there a substitute tool path for "Image>Adjustments>Variations…" in Photoshop CS6 Standard Addition that brings similar results?  I was used to using Image>Adjustments>Variations… in Photoshop CS4 Standard Standard Addition quite often. I upgraded to Photoshop CS6 Standard Addition to get the 64bit memory architecture compatibility on my Macbook Pro, booted in Mountain Lion.  I see now that Photoshop CS6 Standard Addition has the "Image>Adjustments>Variations…" tool path removed.
    I don't have Photoshop CS6 Extended, which has the all new Image>Adjustments>Variations… tool path.  I only have Photoshop CS6 Standard Addition so, if anyone can share with me a substitute tool set that can give me similar results to using the old "Image>Adjustments>Variations…,"  I would appreciate it.

    Thanks, R_Kelly.
    You helped me to start exploring other tools in the Image>Adjustments Menu.  "Image>Adjustments>Color Balance…" seemed to help me get the results that "Image>Adjustments>Variations…" used to deliver.  "Image>Adjustments>Photo Filter>Warming Filter (85)" also got me to where I wanted to be in desired adjustments.  I used to get the results I wanted in brightness, contrast, mid-tone adjustment, and color balance buy using just Curves, Variations, and Hue/Saturation.  Now I'll use "Color Balance…" and "Photo Filter>Warming Filter (85)" along with Curves, and Hue/Saturation.  I also have learned to use "Levels" some more to get the same effect as Adjustments>Variations…"  I always thought there were more technically precise adjustment tools to get the same effect as "Image>Adjustments>Variations…"  Adobe dropping Variations in Photoshop CS6 Mac version forced me to learn better image adjustment approaches for pre press color correction and image warming.  I feel confident now to make Photoshop CS6 my prime-time work tool and move the Photoshop CS4 launch icon off of my Mac OS app Dock.  Thanks again, R_Kelly.

  • How to check the DPI for images on pages

    hi,
            I want to check the DPI for images programatically, is there any function available in acrobat SDK,
            If not what other option we have to check the DPI for images programatically.
    Thank you,

    You don't mention which parts of the SDK, but you can use the Preflight feature of Acrobat via either JavaScript or C/C++ (plugin) to generate a report of images in a document and their information (including dpi).
    You can also write a plugin to iterate over each image individually and get its properties.

  • How to update the path for a field which is of type textarea

    Hi,
    1.I have multiple record block,i need to update the textarea field in this multi entry block.I have put a for loop to achieve the same,however i'm able to update the path for text field,checkbox,selecttype,but am unable to update the path for field which is of textarea.Please suggest.
    2. Also i have another problem which occurs randomly.although i have record for a button click event in  my property file,button click is not happening during the playback.am getting error asVariable "obj.libraryname.web_button_BTN_1" not found for string:
    please not i have entry for the above button in my property file.
    Please suggest.

    Say i have 5 rows then
    for(int i=1;i<=5;i++){
    String Newpath = updatepath(eval("{{obj.libraryname.web_input_text_fieldname}}"),i)
    web.text_area(Newpath).setText("Text to be set")
    Below function is used to update my path
    public String updatepath(String path,int i) throws exception {
    String FPath = "";
    if(i<2) {
    FPath = path.substring(0, path.indexOf("'", path.lastIndexOf("@id=")+5))+path.substring(path.indexOf("'", path.lastIndexOf("@id=")+5));
    } else {
    FPath = path.substring(0, path.indexOf("'", path.lastIndexOf("@id=")+5))+(i-1)+path.substring(path.indexOf("'", path.lastIndexOf("@id=")+5));
    return Fpath
    anyother way to update path and set the fields in mutiple block is appreciable
    thanks
    Suresh

  • HT203167 the path for several of my songs that i can't locate is wrong because the path uses forward slashes instead of back slashes.  Can I change this?

    several of my songs in itunes gives me the can't locate ! sign.  in going to the info for each of those songs i noticed the path to locate the file was in proper format except for the slash marks which were / instead of \ .  how can i change the slash makrs in the paths for those songs?

    thanks for the info.  if itunes is applying the wrong path i.e. - forward slashes in path instead of backward slash how will i ever access those songs I've purchased.  it won't let me download them again because it thinks they are on my computer? 

  • HT5361 IN OS 10 where can one find the folder for images that came with email?

    IN OS 10 where can one find the folder for images that came with email?
    I wish to delete the leftover image files to free up drive headroom.

    I checked in this place, no dice!
    Home/Library/Mail Downloads, or
    the system "Downloads" folder

  • How can i change the path for uploadin videos??

    i m using javax.servlet.servletcontext for setting the path for storin upload videos...
    by using the getrealpath able to store videos in web-inf file...
    how can i change the location...

    this is the part of code in which i want to change my storage location:
    ** * The base path corresponds to the base directory of the
    * application context's WEB-INF directory. This means that
    * this directory is NOT visible to the end user.
    public static String getBasePath(javax.servlet.ServletContext context)
    { return context.getRealPath("/") + "WEB-INF" + directorySep;}
    /** * The temporary directory used to store files while they are
    * being uploaded. */
    public static String getTempPath(javax.servlet.ServletContext context)
    { return getBasePath(context); }
    /** * Gets the upload directory - used to indicate the local file
    * system storage area.
    can u tell me now how to change the context value???
    and how to change the storage loction??

  • How to set up the path for report in 10gAS?

    I have a report which can be run in one folder A but not in the other folder B, both folder are included in the forms_path in default.env of AS. How can I set up the path for the report in AS so that the report server knows to look for the report in the folder B?

    Hello,
    If you don't specify the "full path name" for your reports, the file will be searched in the directories listed in REPORTS_PATH or in the directory specified in the property sourceDir
    For more details :
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwrefex/envvars/envvar_reports_path.htm
    and
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_conf.htm
    Regards

  • Change the path for attachments after changing a server

    Hello experts,
    I have a requirement which I cannot solve...
    By a customer a server which was used for saving the attachments is no longer active. The customer has now a file server. So in SAP we have changed the path information under Administration > System Initialisation > General Setting in the Path tab from the old server to the file server like this:
    Old path:              
    oldServer\ALLGEMEIN\SAP\DOKUMENT_TEXT\
    New Server:        
    newServer\ALLGEMEIN\SAP\DOKUMENT_TEXT\
    But now I have the problem that all the path information in the UDFs from type LINK and also in all attachment fields like in activities, where the customer has put in a file are still standing on the old status.
    We have allready copied all attachzments from the old server to the new one in the same structure as in the old server).
    Now I have to change in all fields, which are from type LINK (this concerns by the customer only item master date, BP master data and activities) the path information.
    That means I have to paste the string in all the fields 'oldServer' whith 'newServer'.
    Has anybody an idea how I could do this???
    Best regards,
    Vural

    Hi Vural,
    We are facing same kind of issue with our landscape, how did you changed the path for attachments.
    Tcode = IH01
    Worked with user and tried to change the path for few attachments from \\old_server\GROUPS\ to \\new_server\GROUPS\ (storage server) and its worked, but as per user there are lot of files exist in server, they wants to upgrade the path for all files automatically from old_server to new_server.
    Regards,
    Rishi

  • HT5642 Upgraded this morning. All worked fine for about 30min then "no service". Still the same problem and a reset of the device only fixes the problem for 15min. then we are back to no service?? When will apple fix this???

    Upgraded this morning. All worked fine for about 30min then "no service". Still the same problem and a reset of the device only fixes the problem for 15min. then we are back to no service?? When will apple fix this???

    Tried to reset network settings ...only fixes it for 15min. Did a firmware restore and a clean new phone setup. no settings restore. still have network service after around 60min. still running 6.1. i do get a prompt that i have to update settings to LTE. Have not excepted the settings as yet. Cellular data is still set to 3G....

  • How to install Patch to fix the Bug for generating log in OBIEE11.1.1.3.0

    Hi,
    I found the "Patch Number is 10125516" to fix the BUG for generating LOG in OBIEE 11.1.1.3.0 But I don't Know how to generate password for "Patch Number is 10125516" and as well as How to install the Patch.
    Please Let me know to install this Patch.
    I am using OBIEE 11.1.13.0 on Linux(OEL5.4-64bit).
    Thanks & Regards,
    Pamidi.

    I found the "Patch Number is 10125516" to fix the BUG for generating LOG in OBIEE 11.1.1.3.0 But I don't Know how to generate password for "Patch Number is 10125516" and as well as How to install the Patch.Log a SR and ask Oracle support to provide you with the password to download the file.
    Please Let me know to install this Patch.
    I am using OBIEE 11.1.13.0 on Linux(OEL5.4-64bit).Once you get the password, you can access the README file, so just follow the instructions in that file.
    Thanks,
    Hussein

  • CS4 Dreamweaver not replacing paths for images/links

    New Windows 7 machine with CS4 Web Premium.  When using Dreamweaver, and, for example, replacing an image or a link in the design window using the properties...  I click on the image, click the browse button, select the new file (I've tried hitting OK and double clicking -both of which should, or at least used to work in CS3).  However, when returning to the main screen, the path to the image or link has not been replaced.
    What is interesting is that IF I click on more than one image - i.e. say I am replacing one.jpg. So, I open the browse button, and select two.jpg, but then click on three.jpg (which is the file I want) and then hit OK (if I double click three.jpg after selecting another image first), it works fine.
    Any ideas how to fix this irritating bug?? Thanks...

    Hallelujah!!  I'm not alone!!  I wonder if Adobe does actually browse these forums.  I can't believe something like this isn't a really easy fix for them.  I can't tell you the amount of times I thought I'd updated a picture and then looked completely incompetant to a client because it didn't take.  Very sloppy on both mine AND Adobe's part.

  • Full path for images automatically?

    Hi -
    We do HTML for emails (i.e. - viewed in an inbox NOT a
    browser, per se) so every document I create needs to have the full
    URL path. i.e. -
    http://www.servername.com/images/picture.gif
    The Site Definition (Advanced Tab) allows me to make my
    images relative to the site root. But since my customers are
    opening my HTML docs in their inboxes, that doesn't work.
    I thought there was a way to make the entire URL appear in
    the code for all images. Right now I do a Find/Replace at the end
    of my process, but I would prefer it to be automated.
    I hope this makes sense, and I hope someone has an answer for
    me.
    Jon

    Unfortunately, no. I have informed the higher authorities,
    though....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "HollandAmerica" <[email protected]> wrote
    in message
    news:e9m71a$rhl$[email protected]..
    > Hi -
    >
    > We do HTML for emails (i.e. - viewed in an inbox NOT a
    browser, per se) so
    > every document I create needs to have the full URL path.
    i.e. -
    >
    http://www.servername.com/images/picture.gif
    >
    > The Site Definition (Advanced Tab) allows me to make my
    images relative to
    > the
    > site root. But since my customers are opening my HTML
    docs in their
    > inboxes,
    > that doesn't work.
    >
    > I thought there was a way to make the entire URL appear
    in the code for
    > all
    > images. Right now I do a Find/Replace at the end of my
    process, but I
    > would
    > prefer it to be automated.
    >
    > I hope this makes sense, and I hope someone has an
    answer for me.
    >
    > Jon
    >

  • Relative paths for images upset by forwarding requests

    Hello World.
              I am using a web app deployed in Weblogic 5.1 with service pack 8.
              I have hit a problem which puzzles me. When I forward a request from
              one JSP to another (say from A to B) the web server seems to take the
              URLs of the images on the served file (B) relative to the path on the
              calling file (A). Here's a detailed explanation...
              Suppose I have a the web app structured as follow
              /oddApp/launch/A.jsp
              /oddApp/B.jsp
              /oddApp/images/tick.gif
              Page A simply stores its request URI and forwards its request to page B
              <jsp:forward page="/B.jsp" />
              Page B displays its requestURI, contextPath and servletPath. It also
              attempts
              to show three images
              <img src="images/tick.gif">
              <img src="../images/tick.gif">
              <img src="/images/tick.gif">
              When I invoke page B directly, the first image is shown, the others are not.
              When I invoke page A, it forwards to B and the second image is shown, the
              others are not.
              In each case the URI, contextPath and servletPath are correctly displayed
              with regard to page B.
              URI = [oddApp/B.jsp]
              contextPath = [oddApp]
              servletPath = [B.jsp]
              The URI in A.jsp is also correct (i.e. /oddApp/launch/A.jsp).
              The search for the images seems to be relative to the original URI (i.e. not
              the URI used to forward), which strikes me as daft. It means that page B
              must be aware of where it is being called from. It is perfectly plausible
              that
              relative paths which suit when called from one location are incorrect when
              called from another.
              I had thought that including the leadling slash (as shown as the third
              image)
              would cause the search relative to the document root (/oddApp/), but this
              appears not to be the case. The search is done relative to the root of the
              server not the web app.
              Adding jsp mappings in the deployment descriptor of the web app does not
              help (I had thought it a long shot anyway).
              Does anyone have any thoughts on this?
              PHiL
              

    i face the same problem (WinNT, WLS6.0): my wep app has a contextRoot " root " which makes it react to the URL: http://host:port/root /: it is this folder which will be used as a basis by the Web server But in the jps I use a relative URL for images: / images/toto.gif : it works very well when I deploy my jsp out of a Web-app by setting a document.root to the weblogic web server.On the other hand, once deployed in a Web-app, images are not found because the default path of the browser is http://host:port, without the context root of the Web-app! In other words, my war has images/*.gif in its root but when /images/toto.gif is resolved in a jsp, as the relative URL is not prefixed by my context-root, the image is not search in the war! actually, if I type http://host:port/root/toto.gif, my image appearsany clues? an alias on the web server? a setting in web.xml/application.xml and their weblogic equivalent files?
              

Maybe you are looking for

  • How do you change your apple id and password on your iPhone?

    How do you change your apple id and password on your iphone?

  • Configure Universal Access? what is it..

    I have iPhone attached, and in lower portion of pane on computer from summary/options is button 'Configure Universal Access'. What is this? I tried every search option in iTune help menu, and they don't bother listing it. I'm not going to experiment

  • Confirmation error - Number of hours recorded  exceeds target hours 0,00

    Hello Friends, I am getting one error in service confirmation . Service confirmation did not go through R/3 properly. Also how system checks recorded hours against target hours ? We can find recorded hours in Actual duration column but where we can s

  • Release Procedure

    Hi, I have create a Purchase order Over delivery tolerance 2% above create new Release Procedure. Plz, advise me. By, Hari.S

  • Change Workflow-Instance-Container values

    Hi Experts, I would like to ask you how to change a value in a container of a Workflow-"Instance". For e.g.: I have a workflow-instance which contains a (bor-) Object "Switchdocument". This switchdocument contains also a (Bor-) Object "serviceprovide