Problems adding logo/image.

Hi,
I have tried to create a logo/image for all pages within my application, however still receive the red cross broken image symbol.
1) uploaded the image for my application using the shared components tool.
2) Logo is set to: logo.gif
logo attributes is: #APP_IMAGES#logo.gif
any suggestions?

Right click on broken image and copy link location (in firefox this is the option).
Now place that link in URL bar to see if image is comming...
Change the value in URL until you get the picture...look then what is wrong...
This must lead to success...place the URL here so maybe there is something easy...
P.S.
Look in manuals what is WORKSPACE_IMAGES AND APP_IMAGES referencing. Try to place in images dir (/i/) that file and call it with #IMAGE_PREFIX#logo.gif (case sensitive call)-this should show logo.
P.S. II
Logo will be shown on every page. So it is not smart to put it in database. Better use #IMAGE_PREFIX# location on pure Apache file system.
Hope this helps

Similar Messages

  • Problems adding an image title?

    Hi,
    When I place an image in Muse I'm having problems adding an image title. When I Control click the image in Design view the choices I get at the bottom of the pop up menu are
    Edit original
    Edit Image Properties
    When I looked it up in help it tells me I should also see another item "Add Title" but I don't get that as a choice. When I click on "Edit Image Properties" I get a choice of Tooltips or Alt Text but no place for a title.
    Thanks,
    Bill

    This is the page
    http://www.adobekb.com/strategies_for_seo.html#addingmetadata
    To be clear when I right click on an image I only get the choice of "Edit Original" & "Edit Image Properties". When I click on "Edit Image Properties" I only get a choice of Tooltips or Alt Text, nothing for title
    Thanks,
    Bill
    Adding titles and alternative text to images
    After you place images on a page, you can access the Image Properties dialog box to set both a title and alternative text (also sometimes called alt text) that is assigned to the image.
    Here's a brief description of each property:
    Title: In many browsers, the title is displayed in addition to the image, typically as a tooltip that appears when a cursor hovers over it.
    Alternate text: If the image file cannot be shown, this text is displayed in place of the image. Alternate text is also used to describe images to visually impaired visitors using assistive technologies to access page content.
    It is ideal to set titles and alternative text for every site asset, to ensure that visitors have the best experience when navigating your site. Tooltips are helpful for including additional information about graphics and alternative text makes pages more accessible for screen readers that verbally present graphic content.
    To add titles and alternative text, follow these steps:
    1. Select a placed image.
    2. Right-click on the image and select Add Title or Add Alternative Text from the context menu that appears (see Figure 3).

  • Problem with logo image

    Hi all,
    I build an application for a client with apex installed on database 11g with gateway.
    All works fine but I've got a problem with the logo image.
    here is what I have done:
    1. upload the image header-logo.gif in shared component and I have associated this image to the application (note : the same thing happens when the image is not associated to the application).
    2. the logo is defined by #APP_IMAGES#header-logo.gif
    3. I run the application. and the image is displayed (ok)
    4. At a time, I don't know really when, the image is not displayed anymore in the pages and when I go back to the images in shared component, the image is there but not displayed.
    I think it could come from the gateway because on my machine I use an http server and I don't have the problem. But I can be wrong.
    Does anybody have an idea ?
    Thanks
    Sophie

    Hi Sophie,
    How about using
    [img src=#WORKSPACE_IMAGES#&P2_PIC_NAME. width=100]
    to access your image.
    If you can not get it working search for images on this forum.
    Regards
    Rana

  • JTextPane: Problem adding hyperlinks & images

    Hi,
    I have a problem and I just can't figure out how to solve it.
    I need to implement a simple Editor for HTML files. Lucky for me, most of the functionality i need is already provided by swing, but i still need to add images and hyperlinks to my document. Especially, i need to be able to select some text, click on a button and turn it into a hyperlink. If an image is within the selected range, then the image should be included in the hyperlink as well (just as you would expect it to be).
    Adding images works so far, using this code (i'll take care of actually loading the image when the rest works).
    JEditorPane editor = getEditor( e );
    HTMLDocument doc = (HTMLDocument) getStyledDocument( editor );
    MutableAttributeSet attr = new SimpleAttributeSet();
    attr.addAttribute( StyleConstants.NameAttribute, HTML.Tag.IMG );
    attr.addAttribute( HTML.Attribute.SRC, "p.gif" );
    try {
         doc.insertString( editor.getCaretPosition(), " ", attr );
    } catch (BadLocationException e1) {
         e1.printStackTrace();
    }But when i try to do the same with HTML.Tag.A and HTML.Attribute.HREF, the selected text disappears from the code (it is still visible in the JTextPane, though) and is replaced by . I just don't seem to get the whole AttributeSet mechanism or which attributes need to be set to which values.
    I have seriously been stuck on this stuff for over one day now, and went through half a million tutorials, but can't figure it out - and i can't imagine that it is that complicated to do something like that.
    By the way, I don't care whether or not you can click on the link in the JTextPane. The whole application is just for editing purposes and the document's content will be uploaded to a webserver at a later point.
    I hope there's somebody who can help me out here.
    Thanks in advance,
    ak87

    Doesn't anyone have a hint for me here?

  • Adding logo/image on selection screen

    How can I add logo or image on my selection screen??? or else use a picture as a background on the selection screen??
    P.S : I have already searched the forum and have not got any suitable answer..most of them are about adding image on module pool screen..but I want it in my selection screen???

    Hi ,
    Try like this
    AT SELECTION-SCREEN OUTPUT.
    PERFORM show_pic.
    **& Form show_pic
    FORM show_pic.
    CREATE OBJECT picture_control_1 EXPORTING parent = docking.
    CHECK sy-subrc = 0.
    CALL METHOD picture_control_1->set_3d_border
    EXPORTING
    border = 5.
    CALL METHOD picture_control_1->set_display_mode
    EXPORTING
    display_mode = cl_gui_picture=>display_mode_stretch.
    CALL METHOD picture_control_1->set_position
    EXPORTING
    height = 55
    left = 750
    top = 08
    width = 350.
    CALL METHOD picture_control_1->load_picture_from_url
    EXPORTING
    url = 'C:\zpic.gif'.
    *here you give the path where your pic is stored on the desktop
    IF sy-subrc NE 0.
    ENDIF.
    ENDFORM.
    Regards,
    Nandha

  • Problem adding an image to the display list

    I'm trying to create a component to add images to a Panel (id=hbox). I seem to be loading the images successfully (because the trace statement works), but can't add them to the display.
    I'm using the following line of code, but getting an error:
    hbox.addChild(event.currentTarget)
    What am I doing wrong?
    Thank you!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" backgroundAlpha=".5"   backgroundColor="0xffffff" creationComplete="init()"  >
        <mx:Script>
        <![CDATA[
        public function placeAnimals():void{
            for(var i:int=0; i<12;i++){
                var imageLoader:Loader = new Loader();
                var url:String = "images/animal"+i+".png";
                var urlReq:URLRequest = new URLRequest(url);
                imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
                imageLoader.x=50*i
                imageLoader.load(urlReq);       
                function imageLoaded(event:Event):void {
                    trace("Success="+event.currentTarget.url)
                   //hbox.addChild(event.currentTarget)
             public function init():void {
                 placeAnimals()
        ]]>
        </mx:Script>
        <mx:Panel  id="hbox"  height="200"   backgroundImage="images/smallWhitePanel.png"  borderStyle="none" />
    </mx:Canvas>

    You cannot add an image directly like that... why not dot the following
    var img:Image = new Image();
    img.source = url;
    this.addChild(img);
    hpefully it should work.. i'v neva seen image being added to the hbox like that... it will work only if you embed it / put it in source element..
    the following link should help you
    http://livedocs.adobe.com/flex/3/html/help.html?content=controls_16.html

  • Problems adding logo or custom type to video clips - the result is fuzzy

    Greetings! I'm new to iMovie (using '11) and am attempting to add my logo to video clips before uploading them to VIMEO. I have watched two tutorials, so I know the mechanics. In Photoshop I put my logo on a transparent background, added my web address below it with the type tool, sized it to 175x85px @ 72ppi, and used PS's Save for Web option, saving it as a PNG file to my desktop. I dragged my black logo onto a video clip in iMovie, but what I see is a badly out-of-focus logo over the video. I've tried multiple times and get the same result. So how do I make it look crisp? I've got a screen shot if you need to see it. Please Help! thanks, tom

    tom5757 wrote:
    ... sized it to 175x85px @ 72ppi, ... but what I see is a badly out-of-focus logo over the video. ...
    no such thing as dot-per-inch in video - video has same res on any sized screen.
    your Project has 1920x1080 pixel ... try this res.

  • Problem adding large images to albums

    What I want to do is view my images large, one at a time, and add them to various albums as I go. This used to work fine in v6 but now, zoom in Max and you can no longer select photos. It seems you can only select images once they are get about 320px wide or smaller.
    Any help as to how I can get this capability back?

    This is a known issue (discussed many times on this forum) with iPhoto '08 with no work around found yet.
    For now report to Apple - iPhoto menu ==> provide iPhoto feedback - and wait
    Larry Nebel

  • Adding an image background

    I have problems adding an image (pattern) on my form. Can anyone give me some advice.

    Hi,
    We currently don't support background images. A work-around that can be used for HTML forms is to embed the form in a page hosted on your own website. If the embedded form is configured to be transparent the image behind the form will be visible.
    Please refer to the following FAQ for more information on the embed feature:
    http://forums.adobe.com/docs/DOC-1991
    Regards,
    Brian

  • Adding logo or image to email signature

    I have added my logo (a jpeg image) to my email signature. When I send an email to someone else who is using an Apple mail program it opens up fine. However, when I send an email to someone who is using, for example, a yahoo mail account, the logo does not show up on the actual email, it shows as an attachment that must be clicked on to open.
    Does anyone know how to embed an actual logo/image onto an email signature so that it will be seen in an email regardless of what type of email program they are using without having to click on it? thanks

    Jessie,
    I would love to help you (and anyone else in your situation), but it seems I can't duplicate your problem. I read your post before going to work this morning, and I sent myself an email (from Mail at home to Lotus Notes at work) with a signature containing a JPEG. Notes, arguable the worst email client out there, showed the JPEG in-line.
    I don't have Outlook or Outlook Express, so I cannot test those, but I'd be happy to receive an email from you so I can see what comes across. You need to send it to my work email because that's the only place I have an email client other than Mail running. The address is dkiechle followed by an @-sign followed by amadeus.com.
    We can do the opposite as well: I can try to send a test email to one of the addresses that you used to see if my signature shows up with the graphics element in-line. Would be pretty instructive, I think. I can do this if you provide an address; however, I can only do it in a few hours from home as I don't have Mail here at the office.
    One interesting thing to check: in Mail, there's an option to "Always send Windows-friendly attachments". Can you check if it is enabled or disabled in your configuration of Mail?
    Daniel

  • Responsive design top logo image

    I have problems with my responsive design: top logo image doesn't follow the various widths. Fex. the mobile display width or the maximum width display. I've tried to fix this by adding a srcset with tree different image sizes but that does't work either. The fluid grid template is DW:s own, it's the latest version of DW from Creative Cloud.
    These are my two attempts:
    <header class="fluid" id="logga"><img src="Images/Logga4.jpg" srcset="Images/logga1 300w, Images/logga2 650w, Images/logga3 1150w" alt="Logga"/></header>
    and the one without srcset: <header class="fluid" id="logga"><img src="Images/Logga4.jpg" alt="Logga"/></header>
    Any ideas?

    See if this live example helps you.  I have 3 different images -- desktop, tablet and mobile.
    Alt-Web :: Fluid Grid Test #4
    Relevant CSS code:
    /**for desktop**/
    .desktop {display:block;}
    .mobile, .tablet {
        display:none;
    /* Special Rules for tablets */
    @media only screen and (max-width: 768px) {
        .desktop, .mobile {display:none}
        .tablet {display:block}
    /* Special Rules for mobiles */
    @media only screen and (max-width: 480px) {
        .desktop, .tablet {display:none}
        .mobile {display:block}
    Relevant HTML code:
         <div class="gridContainer clearfix">
         <img class="banner desktop" src="http://placehold.it/1056x200/198EBA/FFFFFF&text=DESKTOP.jpg" alt="desktop image" />
         <img class="banner tablet" src="http://placehold.it/800x100/2A4D6B/FFFFFF&text=TABLET.jpg" alt="tablet image" />
         <img class="banner mobile" src="http://placehold.it/320x75/FFC000/000000&text=MOBILE.jpg" alt="mobile image" />
    </div>

  • Unable to use the Logo Image

    Hi all,
    I want to use Logo Image at the Title of a report. But the problem is i am unable to use this .jpg file in Title Logo.
    I have copied the desired jpg in these two locations :
    OracleBI\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    OracleBI\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images.
    Also i have restarted the Services .Then also i am unable to see the image file .
    Here i have used the same process in our development server and it's working without any issues. I have done the same changes on my QA Server, but it's not working on QA.QA Server is 2 node Clustered environment.
    Any help is Appreciated.
    Thanks
    Rondo.

    You should be creating and deploying your own application for skin/style customisations, not amending images in-place. See docs:
    - http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages
    - http://www.oracle.com/technetwork/middleware/bi/customizing-oracle-biee-11g-176387.pdf

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • Logo image not displayed in PDF preview in HFR Studio reports

    Hello All
    I need to display a logo image on every page of an hfr report. The logo is visible in web-preview and print preview. But when the report is run in PDF preview, logo is not visible.
    A header text box is also used which visible in all formats but not the logo.
    Any pointers will be greatly appreciated.
    Thanks
    Neha

    The image is a jpg image. I have also tried using and image already saved in hfr's repository.
    But still I'm not able get the image in pdf format of report*
    The same image is visible in web-preview and print preview*
    I don't think issue is because of position of image because I tried including the image in an empty report as well.
    The problem is still there with the pdf preview*
    Is there something else that could be done to display the image in pdf preview of report????
    Thanks in advance..
    Neha

  • Problem in displaying images one by one in JList

    I have a problem in displaying images one by one in Jlist. I want to show 100 images as a thumbnailview in jlist but it is talking too much time to show all the images after scalling 100 images to thumbnail view and making it into ImageIcon. So, i thought that it would be better way to show one by one after scaling it into thumnailview. But my renderer is getting calling after 100 images scaled down and setting into list. I have posted my code 2 days back but there is no reply.
    http://forum.java.sun.com/thread.jspa?threadID=789943
    I donno where i am missing in this code.
    Plz suggest me some solution for it.

    Where is the scaling done? In the ListCellRenderer? Regardless of where that is being done, I assume you are caching the scaled images after you scale them, right? If not, consider adding some sort of caching.
    This should do the trick...
    Rework your ListCellRenderer to check to see if a scaled version of the image is available. If not, start a thread to do the scaling and create an ImageIcon. In the meantime, while that thread is running, have the renderer return some sort of stock icon, like a little generic image icon. When the scaling thread completes, make a call to repaint() on the JList so the cell renderer gets re-asked for the icons. This time around, the renderer should notice that a scaled version (the ImageIcon) is available. Return that. So, this method doesn't guarantee that the images will be produced in order, 1...2...3..., but it will return images as they become available, and the overall JList rendering won't wait until all 100 are ready. If you want them returned in order, just do all of the scaling in a single thread and queue up the images to be scaled, in order.
    I hoped this helps. (If it does, please throw me some Duke Dollars.)

Maybe you are looking for