Two Images in PDF (background image)

Greetings
Trying to replace an existing image in a report from filesystem and this replace an existing loaded image into the reports. This image should come as back of the photo for an ID Card. As it comes from the file system it pushs the photo in the background, which has to be in the foreground. So the filesystem image (pointing to a file in OS) in the background, the photo image from the database should sit on top of the OS image. This works fine earlier if the image is loaded into the report instead of file system.
I am using 10g reports, any idea how will use the file system image in the background and push the photo image comes from the database on top of it.
thanks

Please ignore this thread. Has resolved. Removed both images and put the background image first and recreate the database image on top of file system image later, so it works now.
The solution (just in case) is remove both images and recreate them in the order, i.e the background image first and the foreground image later.
Cheers

Similar Messages

  • PLEASE HELP ME to put an image over a background image !!

    Hello,
    I need help on my AWT program. I have a map being displayed, and would like an image of a car (car.gif) to be displayed over the image of the map.
    So my question is: How do I make this map a background image, and put the picture of the car right over it. I need my map loaded all the time, and the picture of the car will be reloaded many times over the same map, so a class method to load this map would be perfect. Any help, code, or suggestions would be great. Thanks so much!
    Here is what I currently have for my map.
    import java.awt.*;
    import java.awt.event.*;
    public class MyImage extends Panel {
        private Image im = null;
        Graphics g;
        public void getMap(){
          im = Toolkit.getDefaultToolkit().getImage("C:\\test_map.gif");
             MediaTracker tracker = new MediaTracker(this);
             tracker.addImage(im,0);
             try {
                 tracker.waitForID(0);
             }catch (InterruptedException e){}
                 repaint();
       public void paint(Graphics g){
            this.g = g;
             if (im != null)     {
                g.drawImage(im,0,0,this.getWidth(),this.getHeight(),this);  //706,397
        }

    Look at this sample, the car will start when the button will be pressed, and stop on the next press.
    import java.awt.event.*;
    import java.awt.*;
    public class UsaTrip extends Frame 
         mapPanel map   = new mapPanel();
         Button   move  = new Button("Move");
         TheMover mover = null;
    public UsaTrip()
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         setBounds(10,10,500,400);
         setLayout(new BorderLayout());
         add(map,BorderLayout.CENTER);
         add(move,BorderLayout.SOUTH);
         move.addActionListener(new ActionListener()
         {     public void actionPerformed( ActionEvent e )
                   if (mover == null)
                        mover = new TheMover(map);     
                        move.setLabel("Stop");          
                   else
                        mover.end();
                        mover = null;     
                        move.setLabel("Move");          
         setVisible(true);
    public class TheMover extends Thread
         mapPanel map;
         boolean  go   = true;
         int      spin = 0;
    public TheMover(mapPanel m)
         map = m;
         start();
    public void end()
         go        = false;
    public synchronized void run()
         while (go)
              map.moveCar();
              try     {sleep(100);}
              catch(InterruptedException i){}
    public class mapPanel extends Panel
         Image map;
         Image car;
         int   x=10,y=30;   
    public mapPanel()
         map = getToolkit().getImage("usa.gif");
         car = getToolkit().getImage("home24.gif");
         MediaTracker tracker = new MediaTracker(this);
         tracker.addImage(map,0);
         tracker.addImage(car,0);
         try   {tracker.waitForID(0);}
         catch (InterruptedException e){}
    public void moveCar()
         repaint(x,y,25,25);
         x++;
         repaint(x,y,25,25);
    public void update(Graphics g)
         paint(g);
    public void paint(Graphics g)
         Rectangle r = g.getClipBounds();
         g.drawImage(map,r.x,r.y,r.x+r.width,r.y+r.height,
                              r.x,r.y,r.x+r.width,r.y+r.height,this);
         g.drawImage(car,x,y,this);
    public static void main(String[] args )
         new UsaTrip();
    Noah
    import java.awt.event.*;
    import java.awt.*;
    public class UsaTrip extends Frame
         mapPanel map = new mapPanel();
         Button move = new Button("Move");
         TheMover mover = null;
    public UsaTrip()
         addWindowListener(new WindowAdapter()
    {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         setBounds(10,10,500,400);
         setLayout(new BorderLayout());
         add(map,BorderLayout.CENTER);
         add(move,BorderLayout.SOUTH);
         move.addActionListener(new ActionListener()
         {     public void actionPerformed( ActionEvent e )
                   if (mover == null)
                        mover = new TheMover(map);     
                        move.setLabel("Stop");          
                   else
                        mover.end();
                        mover = null;     
                        move.setLabel("Move");          
         setVisible(true);
    public class TheMover extends Thread
         mapPanel map;
         boolean go = true;
         int spin = 0;
    public TheMover(mapPanel m)
         map = m;
         start();
    public void end()
         go = false;
    public synchronized void run()
         while (go)
              map.moveCar();
              try     {sleep(100);}
              catch(InterruptedException i){}
    public class mapPanel extends Panel
         Image map;
         Image car;
         int x=10,y=30;
    public mapPanel()
         map = getToolkit().getImage("usa.gif");
         car = getToolkit().getImage("home24.gif");
         MediaTracker tracker = new MediaTracker(this);
         tracker.addImage(map,0);
         tracker.addImage(car,0);
         try {tracker.waitForID(0);}
         catch (InterruptedException e){}
    public void moveCar()
         repaint(x,y,25,25);
         x++;
         repaint(x,y,25,25);
    public void update(Graphics g)
         paint(g);
    public void paint(Graphics g)
         Rectangle r = g.getClipBounds();
         g.drawImage(map,r.x,r.y,r.x+r.width,r.y+r.height,
                   r.x,r.y,r.x+r.width,r.y+r.height,this);
         g.drawImage(car,x,y,this);
    public static void main(String[] args )
         new UsaTrip();

  • How to project an image onto a background image?

    Hi,
    I am looking for help with projecting an image over another image.
    I am looking for a similar effect to the image above where it looks like the image of the player as (physically) been projected onto the tunnel.
    Looking closely at the detail of the image you can see that the projection adjusts to the contours of the tunnel i.e. over the framing. This is what I specifically need some help with. I know how to overlay an image onto another using different layers but it doesn't really give a three-dimensional perspective and looks rather flat.
    Any help or advice would be greatly appreciated. Thanks
    Ravi.

    Hi Ravi -
    Could you post what you have done so far, and include your expanded layers panel? The source images would also be helpful, if possible!
    One thing you could try is creating a Displacement Map of your background tunnel image and then wrapping your overlay image to it. The video tutorial below shows you how to do this:
    Beside this, you might just have to spend time tweaking your image to create a realistic overlay. This includes adjusting lighting, but also distorting your overlay image. Have you tried using Edit > Transform > Perspective to align your image to the tunnel? The other Transform tools like Distort and Warp might also come in handy.
    I'm looking forward to helping you with this effect!
    Cheers,
    Kendall

  • How can I make background images (in p classes) appear in Review PDF?

    RoboHelp HTML 11.0.4.291.
    In my stylesheet, I have <p> classes for notes, tips, examples, and cautions. Each has a background image.
    p.note {
    background-image: url(note.jpg);
    background-repeat: No-Repeat;
    background-position: 0pt 12pt;
    margin-left: 12pt;
    border-left-style: none;
    border-right-style: none;
    border-top-style: none;
    border-bottom-style: none;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    The images show in outputs but not in previews, nor in Review PDFs (Review | Create PDF for Review . . .).
    Is there a way to make those images appear?

    No way that I know of. You have the same problem with printed documentation. The background image's don't show up there either. Please log a bug report with Adobe: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38

  • Mixed results on iPad and iPhone 6 Plus with background image. How to fix this?

    Flash Professional CC
    I'm having an issue with adding images on iPhone 6 plus and iPad. I'm getting mixed results with two items: 1) a background image and 2) a button that should appear at the bottom left-hand corner on any device. In one case the background image appears enlarged and only shows about 30% of itself. In the other case, the bottom left-hand button appears about 50 pixels to the left when x=0. I also get different results when I set the following:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    This does not produce the expected results. I would like to have consistent results across iPad and iPhone 6 plus, which seams to be an issue. The immediate fix for this is to leave the images on the stage instead of using addChild. I could then just stretch the background image so that it spans the whole screen. But I want to add the items dynamically for greater flexibility.
    Here are two cases:
    Case #1:
    This an iPhone 6 plus and you should notice 2 things. 1) There is black and white on both sides. The blue background SHOULD APPEAR ACROSS THE WHOLE SCREEN. 2) The red button in the corner SHOULD APPEAR IN THE LEFT MOST CORNER OF THE
    SCREEN.
    Case #2:
    This an iPhone 6 plus and I have set the scale X, Y to the stage.stageWidth/Height:
    mc_stageBackground_Main.scaleX = stage.stageWidth;
    mc_stageBackground_Main.scaleY = stage.stageHeight;
    This results in a close up of the background image.
    Here is the code that I'm using:
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    //When this is active the background image spans across the device (iPhone 6 plus) correctly. The main logo image does not line up correctly.
    /*stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;*/
    var main_logo:MC_LOGO_MAIN = new MC_LOGO_MAIN();
    var mainBackground_2208: MC_MAIN_BACKGROUND_2208 = new MC_MAIN_BACKGROUND_2208();
    var mainBackground_1024: MC_BACKGROUND_1024 = new MC_BACKGROUND_1024();
    var mainCorner: MC_MAINCORNER = new MC_MAINCORNER();
    var chapters: MC_CHAPTERS = new MC_CHAPTERS();
    var _stageWidth = 1024;
    if (stage.stageWidth > _stageWidth)
        //Add bigger background if the stage is bigger than 1024
        mainBackground_2208.x = stage.stageWidth/2;
        mainBackground_2208.y = stage.stageHeight/2;
        addChild(mainBackground_2208);
        //Using this code results in a very close up view of the stage on iPhone 6 plus  
        /*mc_stageBackground_Main.scaleX = stage.stageWidth;
        mc_stageBackground_Main.scaleY = stage.stageHeight;*/
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild(mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //add logo to sit at 50 pixels from the top of the stage
        /*main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});*/
    else
        trace ("The stage is 1024 or smaller");
        //Add 1024 background if stage is 1024 or smaller
        mainBackground_1024.x = stage.stageWidth/2;
        mainBackground_1024.y = stage.stageHeight/2;
        addChild(mainBackground_1024);
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild (mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //adds chapters
        chapters.x = (stage.stageWidth - stage.stageWidth)+75;
        chapters.y = stage.stageHeight - 120;
        addChild(chapters);
        TweenLite.from(chapters, 1,{ height: 0, delay:.5, ease:Elastic.easeOut});  
        //adds the Main logo to sit at 50 pixels from the top of the stage
        main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});

    On all of the devices go to settings - facetime - iphone cellular calls - oFF, this part of Apple continuity.

  • Why aren't my CSS and div tag boxes displaying the background images I'm plugging in?

    I'm using the CSS dialog boxes to places images via the background image option into my dreamweaver site. Everything looks fine in dreamweaver but when I view it any of the browsers, two of the images I've place as div tag background images don't work....the overal background image of the site works, but these don't show up ....
    here's my code if it helps to answer
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Main</title>
    <style type="text/css">
    body {
    background-image: url(images/realgrade.jpg);
    background-repeat: repeat-x;
    text-align: center;
    html, body {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 0px;
    padding-top: 25px;
    #wrapper {
    width: 930px;
    text-align: left;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    background-image: url(file:///Macintosh%20HD/Users/jimmymoreira/Unnamed%20Site%204/images/possible%20image. jpg);
    background-repeat: no-repeat;
    #header {
    height: 192px;
    width: 237px;
    background-image: url(images/logo_fill.jpg);
    background-repeat: no-repeat;
    position: absolute;
    left: 35px;
    top: -25px;
    #mainNav {
    background-color: #33F;
    height: 200px;
    width: 272px;
    float: left;
    margin-top: 233px;
    #maincontent {
    height: 600px;
    width: 608px;
    float: right;
    margin-bottom: 45px;
    padding-right: 25px;
    background-repeat: no-repeat;
    background-position: center 270px;
    background-image: url(file:///Macintosh%20HD/Users/jimmymoreira/Unnamed%20Site%204/images/opaqueMaincontent .png);
    #sidebar {
    background-color: #F36;
    height: 250px;
    width: 272px;
    clear: left;
    float: left;
    #footer {
    height: 525px;
    width: 870px;
    clear: both;
    padding-top: 45px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-image: url(images/footer_image.jpg);
    background-repeat: no-repeat;
    margin-top: 45px;
    </style>
    </head>
    <body>
    <div id="wrapper">
      <div id="header">
        <p> </p>
        <p> </p>
        <p> </p>
      </div>
      <div id="mainNav">
    <p> </p>
    </div>
      <div id="maincontent"></div>
      <div id="sidebar"></div>
      <div id="footer"></div>
    </div>
    </body>
    </html>
    here's what I'm going for
    here's what I'm getting in the browser
    Please help!

    Your image files are pointing to your hard drive, not your server.  You have this
    background-image: url(file:///Macintosh%20HD/Users/jimmymoreira/Unnamed%20Site%204/imag es/opaqueMaincontent.png);
    and you should have this
    background-image: url(imag es/opaqueMaincontent.png);
    Also, is your images file named imag es?
    Gary

  • Fx-background-image and rounded borders

    Hi,
    I am trying to use a simple image as background image for an HBox through repetition, but I have found a problem. The HBox has got rounded borders (using fx-background-radius) and when I set the background image with fx-background-image it does not fit the real borders of the HBox and it appears painted outside the limits.
    The css code is the following:
    -fx-background-radius: 0 0 30 30;
    -fx-background-image:url('image1.png');
    -fx-border-radius: 0 0 30 30;
    -fx-border-width:0 2 2 2;
    -fx-border-color:#D9D9D9 #D9D9D9 #D9D9D9 #D9D9D9;
    -fx-effect: dropshadow( two-pass-box , rgba(0,0,0,0.35) , 20.13095238095238,0.5 , 0 , 18 ); Is this the expected behaviour? If a try it with background-color, it adjusts perfectly to the rounded borders. Should I set another property? (I have tried with fx-background-size and fx-background-repeat and fx-background-position but with no result)
    Thanks in advance.
    Regards.

    This probably is expected behaviour.
    The properties for background fills (color, insets, radius) donot work together with the properties for background images (image, position, repeat, size). They are separate and painted in separate passes in order, quote from the CSS doc below:
    >
    Each Region consists of several layers, painted from bottom to top, in this order:
    background fills
    background images
    contents
    border strokes
    border images

  • Background Image for BIP 'Certificate'

    Hey there,
    Im new to BIP, I ususally lurk over in the OBIEE side.
    Im trying to create a 'certificate' type of report in BIP, I've got it working to an extent, heres what I've done :
    pull in the certificate 'skeleton' image as the background image in MS Word, plot the BIP data fields in the name, date & manager locations on the certificate etc. Repeating Group is set for each row, i get a certificate per user - perfect !
    except....
    the background image looks fine in Word when viewing the page at 100% in 'Print Layout' but the resulting PDF has aligned the picture differently so the location of the text fields I plot in Word is not mirrored in the PDF.
    I should add the background image needs to cover 100% of the page.
    Is there an optimum size for an A4 background ? I know paper sizes are not measured in pixels, but does the PDF generation use a pre-set DPI that I can work from ? Anybody else have probs lining up a background image?
    Bit stuck , I thought this would be the easy bit :-)
    Thanks in advance,
    Alastair

    For those that are interested I've achieved my goal,
    I gave up trying to decipher why small changes to Background images & Watermarks where having a large effect on the PDF output, so I've embedded the picture in the Word template and through trial and error lined them up.
    Im still not happy that what I see in Word is not directly what I see in the PDF, I must have created 50+ previews using the left a bit, left a bit, down a bit , left a bit approach :-) But they now line up at least in the PDF output.
    I'd be interested if anybody knows workarounds, the problem seems to be when you use picture wrapping properties of behind text or in front of text. I guess RTF doesn't support all the Word options (ie text boxes etc) so we are left with the trial and error approach.
    Reminds me of the pain of working with Oracle reports trying to line things up :-) I think I'll stay over in OBIEE land

  • How to remove background image per action

    Hi!
    I just created a wonderful action, but there's still one step I can't get working.
    I am optimzing scanned PDFs.
    First step: Preflight: Convert to greyscale.
    Second step: Optimize PDF: All filters set to high. This separates the background of the scan from the scanned text. Both marked as image, not as background image.
    Third step: Remove the backmost image. Can't get that working.
    Any ideas?
    Thank you very much!

    There may be a preflight script to remove the image, but it might get rid of all images. You can also use the Object Touchup Tool (or the new name that I forget) to select the background image and delete it. You would have to do it on each page.

  • Ringtones and background images not available after call manager upgrade

    Hi,
          We have upgraded our call manager from version 8.5 to 10.5.  Once after the upgrade we lost all the Ringtones and background images except the two default ringtone and background images.  we got 8945 sccp phones(running 9-3-1 firmware) and 9951 sip phones(running 9-4-1 firmware).  Both these phones lost these list.  However the ringlist.xml is available in the tftp server with all the ringtones and the phones are pointed to the right tftp servers.  I tried to restart the tftp servers and tried again, however that didn't help.   we are using call manager 10.5 and h323 voice gateway.  Could anyone please help on this.
    Thanks
    Barry

    Hi Tony,
         I can see the ringtone files in the call manager (osadmin>tftp file mgmt), i have also restarted the tftp services, but it didn't help.  I believe you advised to re-upload the ringlist file (Ringlist.xml) and try again. I will try this and update you.  Please let me know if you have any other suggestions.
    Thanks
    Barry

  • Problem with Background image and JFrame

    Hi there!
    I've the following problem:
    I created a JFrame with an integrated JPanel. In this JFrame I display a background image. Therefore I've used my own contentPane:
    public class MContentPane extends JComponent{
    private Image backgroundImage = null;
    public MContentPane() {
    super();
    * Returns the background image
    * @return Background image
    public Image getBackgroundImage() {
    return backgroundImage;
    * Sets the background image
    * @param backgroundImage Background image
    public void setBackgroundImage(Image backgroundImage) {
    this.backgroundImage = backgroundImage;
    * Overrides the painting to display a background image
    protected void paintComponent(Graphics g) {
    if (isOpaque()) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    if (backgroundImage != null) {
    g.drawImage(backgroundImage,0,0,this);
    super.paintComponent(g);
    Now the background image displays correct. But as soon as I click on some combobox that is placed within the integrated JPanel I see fractals of the opened combobox on the background. When I minimize
    the Frame they disappear. Sometimes though I get also some fractals when resizing the JFrame.
    It seems there is some problem with the redrawing of the background e.g. it doesn't get redrawn as often as it should be!?
    Could anyone give me some hint, on how to achieve a clear background after clicking some combobox?
    Thx in advance

    I still prefer using a border to draw a background image:
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.border.*;
    public class CentredBackgroundBorder implements Border {
        private final BufferedImage image;
        public CentredBackgroundBorder(BufferedImage image) {
            this.image = image;
        public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
            int x0 = x + (width-image.getWidth())/2;
            int y0 = y + (height-image.getHeight())/2;
            g. drawImage(image, x0, y0, null);
        public Insets getBorderInsets(Component c) {
            return new Insets(0,0,0,0);
        public boolean isBorderOpaque() {
            return true;
    }And here is a demo where I load the background image asynchronously, so that I can launch the GUI before the image is done loading. Warning: you may find the image disturbing...
    import java.awt.*;
    import java.io.*;
    import java.net.URL;
    import javax.imageio.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class BackgroundBorderExample {
        public static void main(String[] args) throws IOException {
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame f = new JFrame("BackgroundBorderExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea area = new JTextArea(24,80);
            area.setForeground(Color.WHITE);
            area.setOpaque(false);
            area.read(new FileReader(new File("BackgroundBorderExample.java")), null);
            final JScrollPane sp = new JScrollPane(area);
            sp.setBackground(Color.BLACK);
            sp.getViewport().setOpaque(false);
            f.getContentPane().add(sp);
            f.setSize(600,400);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
            String url = "http://today.java.net/jag/bio/JagHeadshot.jpg";
            final Border bkgrnd = new CentredBackgroundBorder(ImageIO.read(new URL(url)));
            Runnable r = new Runnable() {
                public void run() {
                    sp.setViewportBorder(bkgrnd);
                    sp.repaint();
            SwingUtilities.invokeLater(r);
    }

  • How to use background image in ABAP -  webdynpro

    Hi,
    My requirement is like that.
    I want to display a background image. Over the background image i want to display my ALV list or report.
    How to display my personalized image in background.
    Please assist me....
    Thanks in Adv.

    hi ,
    this is not possible:
    refer these threads :
    Background Image
    I Assign Background Image to a Group (Ans by Thomas)
    Image as Background Image possible?
    as correctly pointed above and in this thread
    use your own stylesheets
    refer this thread for more  information on styles :
    EP 7 Portal stylesheet with WD ABAP
    to display image in the foreground :
    refer this WIKI
    https://wiki.sdn.sap.com/wiki/display/stage/DisplayEmployeeImageinABAPWebDynpro+Application
    regards,
    amit

  • Link on background image

    I created and inserted a  background image in the Container. It includes "link buttons" built into the image in Photoshop, meaning images intended to be clicked in order to move to another page.  I can't create hotspots/image maps to use to create links because the image is a background image.
    How do I create the actual hyperlinks to make the "buttons" function as navigiation links?
    Thanks for your suggestions.
    Barry

    Google is your friend.
    Search term
    "Links on background images"
    First link in search result
    http://xavisys.com/css-trick-turning-a-background-image-into-a-clickable-link/
    #yourdiv {
        background-image:url(image.png);
        display:block;
        height:58px;
        text-indent:-9999px;
        width:200px;
    You will need to style the position of the div(s)
    Learn CSS
    Shane

  • Image map + link in background image

    Is it possible to put an image map and link to a background
    image of a table?

    no but you can put a 1px by 1 x blank transparent image over
    the background image and add an image map to that

  • How to put the background image in Title Window?

    Hi,
    I'm newbie in flex. I 'm using Flex 4.
    Can anyone give me some guidelines on how to put the background image in Title Window?
    Is it possible to do this?
    Thanks.

    Hi,
    Check the below sample code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|BorderContainer {
                background-image:Embed(source="image/wheres_the_green_rez.jpg");
                background-image-fill-mode:clip;
        </fx:Style>
        <s:TitleWindow width="100%" height="100%">
            <s:BorderContainer width="100%" height="100%"/>
        </s:TitleWindow>
    </s:Application>
    Regards,
    Anitha

Maybe you are looking for