Background pictures replace main pic

Every time I try to drag the background picture to the background it replaces the original photo.
What is wrong

Sorry but I do not understand your question - can you explain what you are doing and where please
LN

Similar Messages

  • Background Pictures in Disc Images

    I've been trying to create a disc image using Disc Utility that displays a background image when you open it, similar to the kind used by many shareware apps distributed these days (ie. a picture that says "To install, drag this folder to your hard disk").
    The problem is that I can't seem to get the background picture to "stick", as it were. I've set up a folder with a bg pic and dragged it onto Disc Utility to create a compressed disc image, but the background disappears when I open the finished product. I've tried altering the disc image once it's finished instead, but as soon as I eject it and re-load the image, it's lost its background picture.
    I sort of managed to get this to work by creating an uncompressed read/write disc image with Disc Utility instead and then altering the contents with my background picture, but when I transfer it to another computer my settings have vanished. This isn't really an ideal solution anyway, though, as I would rather used a compressed image for internet distribution.
    I've tried doing a search on this forum for similar queries, but most of them seem to concentrate on how to make the background picture a hidden file, which I'm not terribly concerned about. That, and I'm not all that keen on too much fiddling about in the Terminal...
    So, can anyone help me here? How do those shareware developers make their custom disc images? Any help would be greatly appreciated. Thanks in advance!
    - Greg
    iMac G5 20 ALS   Mac OS X (10.4.7)  

    Sorry, wrong forum!

  • Why does the screen background picture get reset to default when switching user

    iMac with OS X 10.6.8
    I have several user accounts on this iMac, each with a different wallpaper chosen from a common folder (library/desktop/nature) in the top level of the hard drive. (Which exists – can always reset background picture from this folder)
    When I switch from one user account to another, the wallpaper picture, set on the previous login,  appears for a moment and then is  immediately replaced by the default blue.
    This happens when switching from any user to another. I tried restarting the system but the problem is still there.
    This problem just suddenly started and there have been no upgrades or changes to OS X.
    Ideas appreciated!!

    I've found the answer.
    Today, the problem suddenly appeared on my other Mac, which made me look at recent apps..
    I installed Team Viewer a month ago, (which is a great app apart from this) so quit it and removed it from the dock. Problem solved!!
    The odd thing is that the problem appeared only after I had been using Team Viewer for some weeks.

  • BackGround picture for a Swing application??

    hi,
    once I got a nice idea while watching some webpages. we can give a background picture for a webpage in <body> tag?
    I want to do same thing for any Swing application. Currently I am working on that issue. Any suggestions are welcome!!
    santhosh

    Hi everybody!
    Finally I got it. now Using this We can enable background for any swing application.
    the complete code is shown here. If you have any problems regarding this code, please mail to [email protected]
    /******************************[TexturedImageIcon.java]***********************/
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    /* this is used to generate a tiled image from a given image file.*/
    public class TexturedImageIcon extends ImageIcon
         private Dimension size = new Dimension(10, 10);
         BufferedImage bimg1,bimg;
         Graphics2D g2;
         ComponentListener cl = new ComponentAdapter(){
              public void componentResized(ComponentEvent ce){
                   Component c = (Component)ce.getSource();
                   size = c.getSize();
                   createImage();
         public void setImage(String filename){
              super.setImage(new ImageIcon(filename).getImage());
              bimg1=null;
              createImage();
         public TexturedImageIcon(Component comp, Image img){
              super(img);
              addListener(comp);
         public TexturedImageIcon(Component comp, String filename){
              super(filename);
              addListener(comp);
         public TexturedImageIcon(Component comp, URL url){
              super(url);
              addListener(comp);
         private void addListener(Component comp){
              comp.addComponentListener(cl);
         private void createImage(){
              bimg = new BufferedImage(size.width, size.height, BufferedImage.TYPE_INT_RGB);
              g2 = bimg.createGraphics();
              Rectangle2D rect = new Rectangle2D.Float(0,0,size.width-1, size.height-1);
              Rectangle2D tr = new Rectangle2D.Double(0,0,super.getIconWidth(), super.getIconHeight());
              if(bimg1==null){
                   bimg1 = new BufferedImage(super.getIconWidth(), super.getIconHeight(), BufferedImage.TYPE_INT_RGB);
                   Graphics2D g = bimg1.createGraphics();
                   g.drawImage(super.getImage(), null, null);
              TexturePaint tp = new TexturePaint(bimg1, tr);
              g2.setPaint(tp);
              g2.fill(rect);
         public int getIconWidth(){ return size.width; }
         public int getIconHeight(){ return size.height; }
         public Image getImage(){
              System.out.println("asked");
              return bimg;
         public void paintIcon(Component c, Graphics g, int x, int y){
              Graphics2D g2d =(Graphics2D)g;
              g2d.drawImage(bimg, null, null);
         public static void main(String[] args){
              JFrame f = new JFrame();
              f.setSize(300,300);
              JLabel label = new JLabel();
              label.setBackground(Color.white);
              label.setBorder(BorderFactory.createRaisedBevelBorder());
              label.setIcon(new TexturedImageIcon(label, "world2.gif"));
              f.getContentPane().setLayout(new BorderLayout());
              f.getContentPane().add(label, BorderLayout.CENTER);
              f.show();
    /*********************************[JFCUtils.java]************************/
    /*The main logic to enable background picture lies in this class*/
    public class JFCUtils{
         public static ContainerListener cl = new ContainerAdapter(){
              public void componentAdded(ContainerEvent ce){
                   JComponent child = (JComponent)ce.getChild();
                   child.setOpaque(false);
                   child.addContainerListener(this);
                   addlisteners(child);
         public static TexturedImageIcon enableBackGround(JFrame f, String filename){
              ((JPanel)f.getContentPane()).setOpaque(false);
              JLayeredPane lp = f.getLayeredPane();
              JLabel label = new JLabel();
              TexturedImageIcon icon = new TexturedImageIcon(label, filename);
              label.setIcon(icon);
              JPanel panel = new JPanel(new BorderLayout());
              panel.add(label, BorderLayout.CENTER);
              lp.add(panel, new Integer(Integer.MIN_VALUE));
              Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
              panel.setBounds(0, 0, screen.width,screen.height);
              addlisteners((JComponent)f.getContentPane());
              return icon;
         private static void addlisteners(Component c){
              c.toString();
              if(c instanceof JComponent) ((JComponent)c).setOpaque(false);
              if(c instanceof Container){
                   Container ct = (Container)c;
                   ct.addContainerListener(cl);          
              for(int i=0; i<ct.getComponentCount(); i++){ //recursivly make all subcomponents transparent
                   Component child = (Component)ct.getComponent(i);
                   addlisteners(child);
         public static void main(String[] args){
              JFrame f = new JFrame();
              enableBackGround(f, "bg.jpg");
              JButton b = new JButton("fdfdfdfd");
              f.getContentPane().add(b, BorderLayout.NORTH);
              f.setSize(300,300);
              f.show();
    /*************************************[UserDialog.java]**************************/
    //to check how a swing application with background looks like
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class UserDialog extends JDialog
         JPanel contents = (JPanel)getContentPane();
         JTextField shortField = new JTextField(20);
         JTextField nameField = new JTextField(20);
         JTextField emailField = new JTextField(20);
         JTextField smtpServerField = new JTextField(20);
         JTextField pwdField = new JPasswordField(20);
         JTextField pwdField1 = new JPasswordField(20);
         boolean okay = false;
         public UserDialog(JFrame owner){
              super(owner, "New User Details", true);
              initComponents();
              pack();
              setResizable(false);
         public UserDialog(JDialog owner){
              super(owner, "New User Details", true);
              initComponents();
              pack();
              setResizable(false);
         private void initComponents(){
              JPanel west = new JPanel(new GridLayout(0, 1));
              west.add(new JLabel("Short Name"));
              west.add(new JLabel("Full Name"));
              west.add(new JLabel("Email"));
              west.add(new JLabel("SMTP Server"));
              west.add(new JLabel("Password"));
              west.add(new JLabel("Confirm Password"));
              JPanel east = new JPanel(new GridLayout(0, 1));
              east.add(shortField);
              east.add(nameField);
              east.add(emailField);
              east.add(smtpServerField);
              east.add(pwdField);
              east.add(pwdField1);
              JPanel south = new JPanel();
              JButton ok = new JButton("Ok");
              JButton cancel = new JButton("Cancel");
              south.add(ok);
              south.add(cancel);
              contents.setBorder(JFCUtils.border);
              contents.setLayout(new BorderLayout(10, 10));
              contents.add(west, BorderLayout.WEST);
              contents.add(east, BorderLayout.EAST);
              contents.add(south, BorderLayout.SOUTH);
              ActionListener al = new ActionListener(){
                   public void actionPerformed(ActionEvent ae){
                        okay = ae.getActionCommand().equals("Ok");
                        setVisible(false);
              ok.addActionListener(al);
              cancel.addActionListener(al);
         private void clearFields(){
              shortField.setText("");
              nameField.setText("");
              emailField.setText("");
              smtpServerField.setText("");
              pwdField.setText("");
              pwdField1.setText("");
         public User getUser(){
              clearFields();
              okay = false;
              show();
              if(okay) return new User(shortField.getText(), nameField.getText(), emailField.getText(), smtpServerField.getText(), pwdField.getText());
              else return null;
         public static void main(String[] args){
              Dialog dlg = new UserDialog();
              TexturedImageIcon ticon = JFCUtils.enableBackGround(f, "bg.jpg");.show();
              //we can change the background picture by calling ticon.setImage(...) at runtime.

  • After rotobrush, how to make background picture appear in the video when exporting it to PremierePro

    I seem to have problems saving/using it with premiere pro. it's a 10 second video of myself with 3 pics: 2 that I put in front of the video and one as a background. In after effects, in the bottom left corner box, the 2 pics are above the video file and the background picture is below it. Still in after effects, the background pic is there behind me and the 2 other pictures are in front of my video which is where everything should be, great. When i save it, then export it to premiere pro, the 2 pics in front are there but not the background pic, the background is just my full video as if I didn't rotobrush it.  Help??
    Also, how can i export the project as a file in Avi, mpeg, mp4...?
    Thanks in advance

    Hello Mylenium, i do apologize about my ambiguous question. I'm starting to learn how to use it and in some way, i didn't even know what i was talking about myself. But thanks to your help, i now got it.
    "When you export an After Effects project as an Adobe Premiere Pro project, Adobe Premiere Pro uses the settings from the first composition in the After Effects project for all subsequent sequences. Keyframes, effects, and other properties are converted in the same way as when you paste an After Effects layer into an Adobe Premiere Pro sequence."
    so as it says above, it only uses the initial video. What i did was only render using the rotobrush and i didn't "render queue" the whole project afterwards simply because i didn't know i had to do that. I thought rendering it from rotobrushing it and adding the background effects would be enough.
    Again, thank you. and i also learned how to save it in different format, since AVI outputs a huge file size.

  • Background pictures changing once DVD is created....

    So I have a simple DVD which Ive placed a picture for the background of my main menu. I have a submenu that also has a background picture. Now when I preview the DVD each menu shows it's appropriate background, but once I create the DVD, it shows the submenu background for the main menu as well. I actually have 2 submenus and the one background takes over for all backgrounds on all menus. It's really annoying. Anyone know what might be happening?
    Thanks.

    Hello, Scott,
    Welcome to the discussions!
    I don't know what is causing your problem, but a good place to start is to delete iDVD's preference file. Preference files are notorious for becoming corrupt and a sign of that can be weird things happening when you are working in the application.
    So, with iDVD closed, go Home(YourUserName)/Library/Preferences/com.apple.idvd.plist. Drag this plist file to the trash. iDVD will create a new one when you reopen it. You may need to reset the preferences if you have changed them from the default. Take a look at your current preferences before trashing the file so you can reset them if necessary.
    You might also want to do a 'repair permissions' on your computer's drive. Use Disk Utlity for this. Just highlight your drive's icon in DU's list on the left and click on 'Repair permissions.' It may take a while, but when you receive the notice that it is completed, reopen iDVD and see if it runs well now.
    Post back if these suggestions do not help.

  • Can't select iPhoto Background Picture

    Hi.
    Pre Info: Just installed both iLife 8 and iWork 8. iPhoto Library has been re-initialized by iPhoto8.
    Exact Bug description: Use Keynote 8, Create a Shape, click on Shape properties in the Information Window. Try to change to a background picture. I can select any pictures, but the iPhoto Library is inaccessible. It is greyed out. The Same in Pages 8: Can't click to open iPhoto Library for a background pic out of the Information Window.
    Temporal Workaround: Pull the Picture out of the Media Browser onto the Shape.
    Hint: Experienced the "greyed out" Phenomenon with Logic Express 8 "File-Open" also, but it is reproducable with another Mac, too.
    Cheers,
    Fox
    P.S.: Yes-i-did-repair-my-rights-and-so-on
    Message was edited by: Foxboy71

    not helpful. it's no feature, it's a bug!
    If there's an option for changing the background picture, one should be able to do so. Or, to make things easier, the function i mentioned should use media browser by default and not the finder / file opener.
    Seems to me that making the iPhoto Library a Package was one of the monday-morning-ideas of apple
    Fox

  • Flash player 11.5 does not open background pictures of my website

    Flash player 11.5 does not open background pictures of my website scilang.com as well as many others'. 11.4 is ok.  However, 11.5 has really messed it up.
    I tried it with IE9, Chrome, Firefox. No. No with Flash Player 11.5. Why are such things happening all the time?

    I can't comment publicly on dates for future releases, sorry. 
    For users that have selected "Allow Adobe to Install Updates" during installation, they will automatically get the update as soon as it becomes available.  There is some lag in uptake in general (we're really only about halfway into the adoption curve for Flash Player 11.5), so the problem won't be resolved overnight.  If you have access to the source, you may want to update your content temporarily to work around the issue.  If it's just a generic slideshow, you might want to consider replacing it with an AS3-based alternative.  Lightroom distributes a nice flash-based slideshow, for instance.
    There are a couple actionscript-based workarounds you can implement in your content until the next Flash Player 11.5 maintenance release has been deployed to the general release audience.
    There's one workaround here:
    http://forums.adobe.com/message/4841531#4841531#4841531
    The root of the issue is that the onEnterFrame event isn't getting emitted by MovieClips that embed JPEGs in ActionScript 2 content.  This was an unfortunate side-effect of an unrelated graphics optimization.  We have tests that check that onEnterFrame is emitted, and that JPEGs are rendered, but not one where we confirm that a SWF embedding a JPEG emits an onEnterFrame event.  Because the change was isolated to AS2, we didn't see it in our manual URL testing either, as that testing tends to focus on the most popular sites on the web, which usually host newer AS3-based content.  We've added tests to cover this case to prevent it from breaking again in the future.
    Anyway, apologies again for the inconvenience.  Hopefully this information will help you workaround the problem until the next update goes out.

  • Fixing a background picture

    I have a background picture that has a main image on the right. I have all of my text, logo, content, navigation aligned to the left. I want the background to be fixed so that the main image is always showing in full on the right side of the browser while the content on the left will scroll over (or next to) the background no matter how much content is there.
    I thought I had the solution to this with creating this code in my style sheet:
    body {
        background-image: url(Jill%20BackgroundKlytemnestra.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        display: block;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
        height: 1000px;
        background-color: #802536;
    But it doesn't seem to be working. The background is scrolling with the content.
    The page is:
    www.jillgrovemezzo.com/bio.htm
    Regina

    Thanks, Jon. It worked! I am not sure why I didn't have that command in my code before. Makes perfect sense.
    Can you guide me on the proper px settings for the background-position? The content and navigation on the left are set at 700px fixed with a left-margin of 25px.
    Regina

  • Background pictures do not show up on Singsnap when I open a song to listen to.

    When I click on a song to listen to on the site "Singsnap" some of the users have put pretty background pictures on their site but all I see is plain white, the background does not show up....It also does not show up on IE but it shows up beautifully on Google Chrome......Is there some setting I have disabled or what......The HTML is enabled...

    See:
    * [[Website colors are wrong]]
    * [[Websites look wrong]]
    * [[Images or animations do not show]]
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • I am trying to connect my mac book pro to the tv via a mini display port and a hdmi cable, the only picture that is on the tv screen is the background picture on my computer, any suggestions?

    I am trying to connect my mac book pro to the tv via a mini displayport to a hdmi cable, the only picture on the tv screen is the background picture of my mbp, does anyone know what I need to connect to my samsung tv ?

    Hi there. I also bought an iWires mini Display port to HDMI cable and have an LG LED/LCD TV. I plugged it in to my MB Pro and followed the very small writing that came in the package and got both audio and video going. You need to change the audio settings from within System Preferences on your Mac to select your TV as the audio output.
    My concern is the data latency - do you experience a delay between moving your mouse on the MBPro and the TV displaying the movement? It is only a fraction of a second, but certainly enough to be annoying, especially in a cable as expensive as the iWire.

  • I have an iphone 4s why does it have a black screen instead of my background picture when I get a text message?

    I have an iphone 4S why does it have a black screen instead of my background picture when I get a text message?

    When you see the old number come up in the suggested choices look for a blue arrow to the right of the Contact. Tap the blue arrow and then tap Remove from Recents.

  • I need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by ste

    i need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by step explanation please beginner

    Please post (a relevant section of) it right on this Forum.

  • How to stop the auto change of the desktop background picture ?

    How to stop the auto change of the desktop background picture ?

    Well . . thanks, but I already have done that and I still have the problem. The background changes to the standard picture galaxy not to one of the options. Sorry my question wasn't clear enough.
    Thanks. 

  • How do I change the background picture that is shown when i start my Mac?

    On the iMacs in my school they have a different name for everyone of the after for example the band Queen and then there is a picture on the inlogg screen with queen on it. So then you log in and there is another background picture after that. I Have a macbook pro and I would like to change that "start-picture".
    Right now it´s kind of boring and grey. Can you change it somehow?

    It sounds like you're using Adobe Send for Outlook.  Correct?
    Unfortunately, there is no way to change the default text that is inserted into your message. You'll have to change it each time.
    I will pass along your request to the Adobe Send team.

Maybe you are looking for

  • Can't open iCloud Control Panel on PC

    I have the iCloud Control Panel v3.1 installed on my Windows 7 64-bit system. It was working fine using Internet Explorer. I switched to Foxfire and when I attempt to activate the app I get the message "JavaScript is required. To use iCloud enable Ja

  • Can I rename Mainsequence? No results in report!

    Can I rename my Mainsequence within a sequence file to another name, and then create a new Mainsequence? The reason I ask is because I had a sequence file where my Mainsequence contained all of my steps. I then needed to have the ability to call one

  • Each time I create a Text Frame it appears colored with black?

    Every time I create a Text Frame with the Type tool in InDesing CS5.5 in a document named "02_End.indd", (this happen only for this file) the it appears filled with black color. On the other documents this does not happen (the text frames are with no

  • Invalid UTF8 encoding (in control file)

    Hi, I'm using French characters in my control file (in the body of an email), and getting this java exception: Invalid UTF8 encoding. For example: subject="Oracle Order Acknowledgement for Order ${ORDER NUMBER} (${INSTANCE})">Ci-joint votre accusé de

  • Best methods for mixdown

    Okay, a newbie question, I know, but I'm having troubles and need some recommendations... I've recorded all of the sessions for an EP into one Logic file, back to back. This is my first hired project. My problem lies here. I'm trying to mix this down