Image elements background

I would like to add alt-text to my images, but the menu on right-click does not show the "edit image properties".
Also these images show the information "background image" in the elements tab. What is the reason for this?
Pls help...

Hi,
The assets that are being used by one or more states of one or more objects, or are being used in one or more Graphic Styles appear as a Background image in the assets panel.
The "Edit Image Properties" choice is not currently provided for Background images.
Hope it helps,
Sonam

Similar Messages

  • How would I get the Body element background to open at  the scale of the browser window

    How would I get the Body element background to open at  the scale of the browser window? I hear that by using an HTML tag or CSS rule I could scale a background that is placed in the body element without using javascript is this true? 

    The most reliable solution is to use small image slices or tiles and repeat them down and across the page or container division.
    CSS EXAMPLE:
    body {
         background: url(your_image.jpg) repeat;
    More on background images:
    http://alt-web.com/Backgrounds.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • How can i control what images load on my project to save preload time and avoid loading all images, elements, divs not yet visible?

    Sup buddies,
    How can I control what images load on my project to save preload time and avoid loading all images, elements, divs not yet visible?
    As the project grows in size the load time increases. How does one control not loading all images ,divs,elements etc. until they're
    needed on the timeline? For example some sections are off and only become visible when recalled. My projects slowly grow in size so loading
    all images , is counter productive . My other option would be to create separate htmls but that breaks the seamless user experience .
    TY...Over N Out... 

    hello, kiwi
    quote: "Is there an easy way to burn a completed project to DVD, but keep only the (lo res, lo size) previews on my hard drive?"
    yes.
    maybe,...
    1. you might think of making DVD backups first prior to importing the photos into Aperture. "Store Files: In their current location" once in Aperture make low rez Previews, and export finished Project.
    or,
    2. bring in the photographs to hard drive first prior to importing the photos into Aperture. "Store Files: In their current location" once in Aperture make low rez Previews, and export finished Project.
    the low rez Previews will stay in Aperture but the high quality Versions will be exported onto DVDs and gone from the hard drive (if you delete the originals).
    another way would be to export small about 50-70 pixel wide high quality jpegs to a folder on your Desktop and import & keep these in Aperture Library as a reference. make metadata to show where the original Project DVDs are stored and DVD filing system used.
    victor

  • How to reference only part of Image element in Site Studio 11g

    I have defined a Static List and one of the elements is set as an Image. I have the need to only use the src part of the image element and not actually the entire img tag that is created. How can I do this?
    Example:
    <wcm:element name="LargeImage"><img alt="photo01" src="[!--$wcmUrl('resource','steldev5015106')--]" /></wcm:element>
    I'd like to only use the src= piece. My javascript looks like this and the image is breaking because the entire tag is going within the ""
    src='<!--$wcmListElement("LargeImage", wcmListIndex)-->'
    Edited by: 848038 on Sep 1, 2011 8:32 AM
    Edited by: 848038 on Sep 1, 2011 8:33 AM

    Here is what I put in my code and it works beautifully.
    <!--$myImage=wcmListElement("LargeImage", wcmListIndex)-->
    <!--$myImage=strSubstring(myImage,strIndexOf(myImage,"src=")+5)-->
    <!--$myImage=strSubstring(myImage,0,strIndexOf(myImage,'"'))-->
    <img style="position: absolute; top: 0px; left: 0px; display: block; z-index: 6; opacity: 1;" src='<!--$myImage-->' alt='<!--$wcmListElement("ImgAlt", wcmListIndex)-->' title='<!--$wcmListElement("ImgTitle", wcmListIndex)-->' longdesc='<!--$wcmListElement("ImgLongDesc", wcmListIndex)-->' height="313" width="520">

  • Accesibility Issues with Image element

    Hi All,
    I've image element inside a table column. Image used is '~Icon/RedLed'.
    Image source and tool tip are bound properly.
    But we are facing an accessibility issue in this.
    When accessibility mode is set to X, image tool tip reads as
    'Image - Unavailable - Error Exist - Row 6 column Status'
    where 'Error Exist' is the tooltip we are providing.
    The problem is with 'Unavailable' word which is also coming up.
    Also, Image is also rendered, so there is no issue like image path is not found therefore Unavailable word is comin.
    Does anyone have any clue why this could be comnig up.
    Regards
    Manas

    Hi Manas,
    Check this blog to place image in your table.But the blog is to show image in ALV table, apply same logic.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9

  • How to update the large amount of thumbnail images in background process

    in my application i want to load large number of thumbnail images(each images set as icon for separate jradiobutton) into panel. This panel is in left side of JSplitPane.
    when application is starting, now I’m loading the thumbnail buttons without image(to run the application quickly).
    now i want to update the buttons with real thumbnail images in background. i tried with thread and SwingUtilities.invokeLater ,but it stuck the application until updating finish.
    Note:im using java1.4 (not in the possession to use other versions)
    Can anybody give suggestion?
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
         for (int j = 0; j < imgPagesV.size(); j++) {
         try {
              ImageIcon icon = new ImageIcon((BufferedImage)thumImagesV.get(j)); //thumImagesV vector have thumnail bufferedimages 
              ((JRadioButton)thumButtonPanel.getComponent(j)).setIcon(icon);
              updateUI();
         } catch (Exception e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    });

    thax for your reply ..
    even i call new smiple thread to load the images it freeze the main gui. is any wrong in my way ?
    Thread Class
    import javax.media.jai.NullOpImage;
    import javax.media.jai.OpImage;
    import com.sun.media.jai.codec.ImageCodec;
    import com.sun.media.jai.codec.ImageDecoder;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    public class TestThread extends Thread {
         File tiffImg;
         TestThread(File img) {
              this.tiffImg = img;
          * extracting form tiff images and creates thumbnail then add into vector
         public void run() {
              ImageDecoder dec = null;
              Vector thumImagesV = new Vector();
              TIFFDecodeParam param = new TIFFDecodeParam();
              param.setDecodePaletteAsShorts(true);
              param.setJPEGDecompressYCbCrToRGB(true);
              try {
                   dec = ImageCodec.createImageDecoder("tiff", tiffImg, param);
                   int start, end = 0;
                   for (int i = 0; i < dec.getNumPages(); i++) {
                        RenderedImage rm = new NullOpImage(dec.decodeAsRenderedImage(i), null, OpImage.OP_IO_BOUND, null);
                        thumImagesV.add(i, ImageHandler.createThumbnail(rm, 150));
              } catch (Exception e) {
                   e.printStackTrace();
    Main GUI Class
         private void buildGUI(File selectedFile) {
              configButtonPanel();
              configThumbnailPanel(selectedFile);//loading with out thumbnail image
              new TestThread(selectedFile).run();
         }

  • Using image as background

    hi,
    I'm having a little problem, I don't think it's very difficult but the search on this forum is down a.t.m.
    Therefore I'm hoping you guys can help :-)
    Like the title already discribes i want to use an Image as background of a JPanel (or on another Frame if it isn't possible on this one) and still be able to put JLabels, JTextfields, etc. on the JPanel with a LayoutManager.
    To show what i mean:
    -->i want to do something similar to this code
    JPanel test=new JPanel(new BorderLayout()));
    test.setBackground(Color.WHITE);
    --->but instead of setting a Color as Background i want to set an Image :)
    greetings

    The search facility may be down, but you are searching the wrong forum anyway. This is a Swing question and should be posted in the Swing forum.
    But since you made the effort to search, here is a simple example:
    ImageIcon icon = new ImageIcon("???.jpg");
    JPanel panel = new JPanel()
         public void paintComponent(Graphics g)
              //  Dispaly image at at full size
              g.drawImage(icon.getImage(), 0, 0, null);
              super.paintComponent(g);
    panel.setOpaque( false );

  • Image for background

    I have an image now that I want to use for a background on
    all of my WebPages. The image size is 2912x 4368 and I have made it
    1024x1536. On the page it looks good but what happens is the image
    repeats itself twice for width and length. I want it to only stay
    as one image no matter what resolution it is viewed as and not
    repeat the image for either length or width. Plus not look
    stretched or distorted.
    I am using Dream Weaver MX version 6 and also have Adobe PS
    CS2, any questions just ask.
    How do I achieve this?
    Thanks

    Why so huge? What is the weight of that monster?
    > I want it to only stay as one image no matter what
    resolution
    This is not a resolution issue. It's a browser window size
    issue (and
    always has been). When you say "stay as one image", do you
    mean "not tile",
    or do you mean "fill the entire width and height"? If the
    latter, then you
    cannot do that with a background image. Background images
    tile, they don't
    stretch. You can prevent the tiling with a little CSS -
    body { background-repeat:no-repeat; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "568jfe56nfg" <[email protected]> wrote in
    message
    news:fn33r3$a9a$[email protected]..
    > I have an image now that I want to use for a background
    on all of my
    > WebPages. The image size is 2912x 4368 and I have made
    it 1024x1536. On
    > the
    > page it looks good but what happens is the image repeats
    itself twice for
    > width
    > and length. I want it to only stay as one image no
    matter what resolution
    > it is
    > viewed as and not repeat the image for either length or
    width. Plus not
    > look
    > stretched or distorted.
    >
    > I am using Dream Weaver MX version 6 and also have Adobe
    PS CS2, any
    > questions
    > just ask.
    >
    > How do I achieve this?
    >
    > Thanks
    >
    >

  • How do I identify and fix images Elements 10 believes are corrupt?

    During the past three days I have had problems with the functionality of my Photoshop Elements 10 and  received several messages indicating that the catalog is corrupt.  How do I identify and fix images Elements 10 believes are corrupt?

    Thank you for the prompt reply unfortunately the fix did not work.
    Let me provide some more information that may help you diagnose this problem.
    I run Elements on a PC. The operating system is Microsoft Windows 7 Home Premium. The System Type is x64-based. The processor is AMD A8-3850 APU with Radeon(tm) HD Graphics, 2900 Mhz, 4 Core(s), 4 Logical Processor(s).  The Hard Drive is 1.81 TB, and 1.5 TB of this is free.  The Ram is 16 GB.  Everything else works great.
    I have used Photoshop Elements for about 10 years, during which time I have upgraded to newer versions 5 or 6 times. I have used Elements 10 during the past 2 years.  I already bought Elements 12 but I am trying to repair this issue before I upgrade to it. I have approximately 65,000 photos in my catalog. All but the last 2,000 are backed up.
    During the past few days I encountered several problems with the functionality of my Elements 10; all errors provide messages indicating that the catalog is corrupt. Forexample, when I edit a photo in my catalog, the thumbnail image of the newly edited versionwill not display.  When I imported new photos, the thumbnail image would not display.  In all cases the photo image was replaced by a ?.
    I tried to correct the thumbnail problem by repairing and optimizing the catalog. In either case I received the same message that the catalog had not been repaired/optimized because some images were corrupt. However, despite this message, the thumbnails for the newly imported photos appeared but the thumbnails for the recently edited photos still have not.
    Currently, I cannot import new images, edit, delete or even stack photos.  I can still view, search for, copy and delete photos.  When I try to import a photo a new photo I get the following messages - ”the requested change could not be completed because the current catalog is corrupt.  You can attempt a repair in the file catalog dialog."  - "Nothing was imported.  The file(s) or folder(s) selected to import did not contain any supported file types or the files are already in this Catalog." and "The catalog could not be repaired, if you have a recent catalog backup, you should restore it."
    I have visually inspected the catalog and found about 25 recently imported photos that have a thumbnail image but lack the photo's id (i.e. img_3075.jpg would be replaced with ?). They are my photos from my camera and no different that the other 300 images I imported at the same time. However, these images in the catalog are blurry.  When I check the image in the My Pictures folder the image is fine and properly located between img_3074.jpg and img_3076.jpg.  I attempted to reconnect but received a message that there are no files to reconnect. I cannot delete the images from the catalog and If I delete them at the source (in the file folder) they still remain in the catalog view.
    Howdo I identify and fix images that Elements believes are corrupt? 
    Thanks in advance for any thoughts.

  • Placing Image in Background

    Hi,
    When any report (in 11G) returns no data, I want to configure a custom message with an image in background. Is it possible to achieve this? How?
    I tried customizing class error text in 'views.css' but it did not help, I must be missing something...
    Regards,
    Jitendra

    Hi,
    Just to throw some light on my requirement, have a look at !http://tinypic.com/r/fm86c5/7!
    In 10g, I could achieve the same thing by custominzing class=errorinfo as given below:
    ErrorInfo {
         background: url(datanotfound.jpg) 0px 30px no-repeat;
         background-position : center center;
         text-align:left;
         color:#153977;
    And then calling this class in 'No Data View' section.
    I wonder if this is possible in 11g or not?
    Regards,
    Jitendra

  • Can i put image on background of my menu..........

    plz help i have a nokia 5233 n i want to put images on background of my menus.....plz help

    Actually, you cant put images in the background of the menu. It was never possible on symbian phones. The only way you'll get the images there through a theme, and only the theme image can be seen there. You'll have to make your own theme if you want. Just google for carbide UI.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • ADF 11g - PanelGroupLayout having multiple/many images as background.

    Hi,
    Could you please provide me an example code of JSPX page having set of different images as background image for (PanelGroupLayout) Rich ADF Faces Component.
    Succeed with only One image either no-repeat / repeat, but not different set of images.
    It would be realy great, If U can sent it as soon as possible.
    Thanks in Advance !!!
    Thanks
    Rani V

    multiple images tile across the screen as a background
    FMI, We have an Panel group having different set of images with it should have reflection of images as its backgound to it & its parent layout as well.
    For example, Let me consider an table having an row with 7 columns with different set of images with it.
    Where it form has corresponding images reflection around it,(that I've plan to take care with Opacity & transparency). if any better way of doing it, please add your comments.
    Thanks
    Rani V

  • How to set an image as background for a jPanel in an applet

    hi,
    I want to set an image as background for a jPanel component in an applet. I am using netbeans environment. I found that to set an image as a background for a jPanel is not possible. Could someone help me .
    Thanks in advance,
    Joshua

    public class ImagePanel extends JPanel
        private Image image = null;
        public void setImage(Image image)
            this.image = image;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            g.drawImage(this.image, 0, 0, this);
    }Adjust to taste.

  • How do I restore images and backgrounds. Hide images and backgrounds will not unclick.

    Back grounds in email cannot be restored
    == This happened ==
    Every time Firefox opened
    == I clicked on "hide images and backgrounds" and it will not unclick.

    Check the image exceptions: Tools > Options > Content: Load Images: Exceptions - See [[Options window - Content panel]]
    A way to see which images are blocked is to click the favicon (''Site Identification'' icon) on the left side of the location bar and click the "More Information" button.
    This will open the Security tab of the ''Page Info'' window (also accessible via Tools > Page Info).
    Go to the ''Media'' tab of that Page Info window.
    Select the first image and scroll down though the list with the Down arrow.
    If an image is grayed and there is a check-mark in the box ''Block Images from...'' then remove that mark to unblock the images from that domain.
    See also [[Images or animations do not show]] and http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Trying to apply an element background image results in broken window chrome

    Hi everybody. First, thanks for the work on Muse. It's great.
    I'm having a problem though. When I attempt to apply a background fill image to an element, the Import dialog window UI appears to be missing some vital buttons and information? Hmmm... I have attempted to test this trying a different Muse file altogether. Same result. I have tried to apply a background fill image on different UI elements. Same result. However, I can successfully set the background fill color.
    The attached screens below offer some additional insight.
    Clicking the "Add image" option results in the following:
    Notice there are no buttons? The screen is frozen in this state. Worse, I can't Task Manager bomb this thing either cause that opens up behind the frozen view. Nasty lil'...
    Thanks in advance for your input and suggestions.
    s

    Ok. Perhaps I fixed my own problem. Thought I would share...
    I adjusted my display settings to 125% for fonts.
    Now the buttons are back.
    I'll try going back to 100% (best practice for Muse/Windows 8 I believe?) and report back...

Maybe you are looking for

  • How do I update my apps on the Iphone 5c

    I have had my Iphone since December 2013 and was able to download apps. It is now March 2014 and I have not been able to download apps since February. How do go about figuring out how to get my apps to update and be able to download apps.?

  • Disk Utility buggy?

    When I start Disk Utility (on Leopard), I get the following worrying messages: <pre>EBMacPro:Contents eboily$ MacOS/Disk\ Utility 2007-11-03 09:52:33.655 Disk Utility[7896:10b] Error loading /Users/eboily/Library/Plug-ins/DiskImages/VirtualPCDiskImag

  • Creating Vendor Credit Memo Using BAPI  BAPI_ACC_DOCUMENT_POST

    Hi, I want to create a vendor credit memo using the bapi BAPI_ACC_DOCUMENT_POST but with posting keys as 21 and 50.Is it possible to do so.I tested the bapi passing the data to the accountgl table.Do i have to pass data to another table ?

  • Parser Error In Portlet Startup

    We have a portlet application that uses Crystal Reports. It uses the spring framework and runs fine in our development environment (Pluto) but when trying to deploy on the production environment (WebSphere) we get an xml parsing error during the star

  • My screen is not resounding and my sleep button is broken

    A few months ago the sleep button on the top of my iPhone 4s stopped workng so I set up a quick button on my screen that I can put it to sleep with. Now my screen is not working, only that quick button is working. Help!