How do you place an image on 'new background" when open documents in tabs is unchecked

I am trying to use "mirror technique"  (watching videos to learn)
I opened image in PS 2014....with "open documents as tabs is Unchecked..
made a new document the size that will hold the doubled image...
duplicated the image
flipped horizontal...
but when I place on "new document"...nothing happens....just separate windows..
thanks

On image 1, CTRL+A to select all.
CTRL+C to copy.
Switch to image 2, CTRL+V to paste.
Click on Move tool and adjust layer placement as needed.
Nancy O.

Similar Messages

  • How do you set an image into the background of a JPanel or JFrame?

    How do you set an image into the background of a JPanel or JFrame?

    Something like this, Ive thrown in an ImageIcon on a
    button too for good measure.
    import java.awt.*;
    import javax.swing.*;
    public class JFrameImage extends JFrame {
    public JFrameImage() {
    Container c    = getContentPane();
    JPanel panel = new JPanel(){
                 public void paintComponent(Graphics g)     {
    ImageIcon img = new
    = new ImageIcon("background.jpg");
                      g.drawImage(img.getImage(), 0, 0, null);
                      super.paintComponent(g);
            panel.setOpaque(false);
    ImageIcon icon = new ImageIcon("onButton.jpg");
    JButton button = new JButton(icon);
    panel.add(button);
    c.add(panel);
    public static void main(String[] args) {
    JFrameImage frame = new JFrameImage();
    frame.setSize(200,200);
    frame.setVisible(true);
    Going totally fancy pants
    ImageIcon bigImage = new ImageIcon(bgImage.getImage().getScaledInstance(getWidth(), getHeight(),Image.SCALE_REPLICATE));
    g.drawImage(bigImage.getImage(), 0, 0, this); Will scale the image to the size of the panel
    whereas
    for (int y = 0; y  < getHeight(); y = y + image.getHeight(null))
    for (int x = 0; x< getWidth(); x = x + image.getWidth(null))
    g.drawImage(image, x, y, this); Will give a tiled effect
    Try tiling with an animated gif and bring your processor to a standstill.

  • How do you set a image in the background of a JTextfield?

    How do you set a image in the background of a JTextfield? Any ideas?

    You can't thats why it is called textfield!!!
    Take a look at JScrollPane API for this

  • HT1296 How do you transfer music to a new laptop when the old one has died?

    I recently purchased a new Macbook pro to replace my old Sony laptop which died. I want to sync my iPod touch to the new Macbook without losing any of my music. I purchase music on a physical CD rather than using itunes. How do I achieve this?

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • HT1349 How do you Sync iPad with a new iMac when iPad is Synced with a old computer no longer used

    I can not Sync my iPad on my new iMac keeps on telling me its already Synced with another computer and you can not sync with the new one without losing the Library on the old computer

    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
     Cheers, Tom

  • How do you keep QuickTime Player 7 from crashing when opening movie files

    When I try to open a bunch of small Quicktime files at the same time, it crashes with the report below.
    Process:         
    QuickTime Player 7 [691]
    Path:            
    /Used Applications/QuickTime Player 7.app/Contents/MacOS/QuickTime Player 7
    Identifier:      
    com.apple.quicktimeplayer
    Version:         
    7.6.6 (7.6.6)
    Build Info:      
    QuickTimePlayer-17090000~1
    Code Type:       
    X86 (Native)
    Parent Process:  
    ??? [1]
    Responsible:     
    QuickTime Player 7 [691]
    User ID:         
    501
    Date/Time:       
    2014-11-28 16:56:21.951 -0800
    OS Version:      
    Mac OS X 10.10.1 (14B25)
    Report Version:  
    11
    Anonymous UUID:  
    7D3A0DE1-DE0B-88D7-FBB2-495C468FBB23
    Time Awake Since Boot: 3000 seconds
    Crashed Thread:  
    0  Dispatch queue: com.apple.main-thread
    Exception Type:  
    EXC_CRASH (SIGABRT)
    Exception Codes: 
    0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    Application Specific Signatures:
    Graphics kernel error: 0xfffffffa
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib 
    0x9a05e69e __pthread_kill + 10
    1   libsystem_pthread.dylib
    0x9127dfd5 pthread_kill + 101
    2   libsystem_c.dylib      
    0x9a491efe abort + 156
    When I do this with Safe Mode, it doesn't crash. I'm guessing I need to some how make it so Quicktime uses more of the RAM, I got 16 Gigs, or use less CPU.  Activity Monitor shows 87% CPU usage just before the crash. This is a one month old iMac, while on my old one from 2008 with just 4 GB RAM, it didn't crash.

    Thanks to QuickTimeKirk on another post, I got the answer. You use qtl (Quicktime Media LInk) files to point to the real .mov files. Then the qtl file will download when linked to on a web page. After the instant download, Quicktime player will open and grab the stream. Even on a PC! Great!

  • How do you get rid of the white background when importing.mov into SWF ?

    i'm working with a .mov file importing it into SWF
    example here of the object:    http://www.highlandmeditation.com/?page_id=2288
    is there a way in Flash CS4 where i can remove the white background that surrounds the movie?
    its not on the .mov file originally only when i port into SWF
    thanks for your help

    Well when you are finished drawing a picture when you select it you are able to make the drawings background transparent so when you put it on top of something else the background doesnt show up or you can have the background visible.

  • How can you upload an image to MYSQL using php?

    Ok this is a joint thread with one of my other ones because no one else  was posting on it, so I did not get what I needed, so, How can you  upload an image to mysql so when some one logs on to my site, they see  or can upload there own avatar, now there are loads of problems with  this, 1) many people don't know how, 2) It's not every day you try to  encode a image into mysql, 3) Letting people upload images into mysql  can cause traffic problem with people trying to log in. So that's it.

    Uploading images into MySQL is a bad idea, for more reasons than you mention. You should store the images in a directory on the server instead. But if you want to learn the hard way, here is the method:
    The mysql data type must be blob.
    The form enctype must be multipart, like this: enctype="multipart/form-data"
    The form input field myst be type file, like this: <input type="file" name="upload"/>
    Here is example code that prepares the variable $photodata to be inserted into the database.
      $uploadfile = $_FILES['upload']['tmp_name'];
      $photoname = $_FILES['upload']['name'];
      $uploadtype = $_FILES['upload']['type'];
      if ($uploadfile != "") {
    $tempfile = fopen($uploadfile, 'rb');
    $filesize=filesize($uploadfile);
    $width=getimagesize($uploadfile);
    $widthx=$width[0];
    $heightx=$width[1];
    if (($widthx > 102) or (heightx > 135)){
    $image_too_big = " but the image size was too large and was not submitted.";
    } else {
    $photodata = fread($tempfile, filesize($uploadfile));
    $photodata = addslashes($photodata);

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Neil from bristol wrote:
    … How do you make an image … move across the screen …
    by setting KEYFRAMES
    (read, what FC/e's built-in Help-feature tells about it)
    resize and set pic to start position
    set keyframe
    move playhead in timeline to desired length
    set pic to end position
    set keyframe …

  • How do I place an image from PS into InDesign?

    Hi,
    I created a notecard in Photoshop and need to put two on a page in InDesign CS3. I placed the graphic on the page but it's way larger than the designated paper size. I tried going to Object>Fitting to fix the problem but nothing happened. So I tried manually setting the height and width I needed the image to be on the page and it resized the image okay but I couldn't see the entire image within the new size. So my question is how do I place an image, get it to the dimensions I need (see dimensions below) and add two to a page?
    FYI: The paper size is: 8.5 x 11 inches. The graphics are 4.25 x 5.5 inches. I need to print two to a page.
    Thanks for the help.
    ashmic

    To add to M Blackburn's advise, the two selection tools will change what you can do.
    The Selection tool (solid black arrow) will allow you to select the frame itself. It will only select the content if you click on the donut. When the frame is selected, you will see the frame with handles on the corners and centers of lines, and it will be in the color designated to the layer. The default color for layer one is blue, but this can be changed, so don't be thrown if it isn't blue for some reason. Dragging the handles will change the size and placement of the frame, and when moved toward the image, will crop it. Holding the shift key while dragging a handle will keep the frame within proportion (a 3"x5" rectangle will remain 3 units by 5 units, although those units will be larger or smaller than an inch, depending on whether you enlarge or shrink the frame).
    The Direct Selection tool (white arrow) will select the content, rather than the frame. When selecting the content, you will see the handles on a bounding box around the content, and the color will be light brown. Dragging a handle will change the size of the image, and you can also drag the whole image to move it in relation to the frame, which can be used to crop the image as well. Holding shift will keep the image size proportional.
    You should take notice of whether the frame color or the content color is what you see, because double-clicking with the Selection tool will toggle between frame and content, the way clicking within the donut will allow content to be edited while the Selection tool is active.
    If you want to view the image size as a percentage, using the Direct Selection tool is what you want. If you use the Selection tool, you will see the percentage of the frame, which will change while you are dragging it, but as soon as you release the mouse button, it will show 100%. Switching to the Direct Selection tool will show you the percentage of reduction or enlargement of the image itself, and if the X and Y aren't the same, your image is out of proportion.
    Lastly, the shift key, along with Command will probably be what you will use the most, as it will allow you to drag a corner of the frame of a placed image with the Selection tool and proportionally resize the content along with the frame.

  • On my own website vdha.us, I am now getting many words that are purple and when you mouse over them, a new spamming window opens trying to sell something. IE-9 does not do this. How do I turn this off in firefox?

    Sirs,
    The below URL came up immediately when I tried to access our Newfangled website this morning http://vdha.us :
    http://surveyprizecenter.com/survey/claimgift-GT-kw-7b.php?t202kw=Vdha.us&trimmedKeyword=Vdha.us
    I prefer to use Firefox and very seldom use IE-9. but now I might be forced to remove Firefox 4.0.1 and resort to using IE-9 because of this situation.
    I don’t know how spammers can use our website to exploit their spamming, but I can only imagine the complaints I am going to get from our Board of Directors and members about this.
    Can you make them stop, or at least explain how it is that anyone can do this without our permission.
    We have never allowed advertisement on our website and don’t plan on starting now.
    I am now also getting many words that are purple with two lines under them, and when you mouse over them, a new spamming window opens automatically trying to sell something. How do I turn this off?
    I would appreciate any expediency in the return of an answer that you can provide.
    Kindest Regards,
    Dave Broeker
    VDHA Life Member #1797
    VDHA Webmaster & BX Manager
    http://vdha.us

    The "MySearchDial" app needs to be removed in 4 places.
    1) Go to "add / remove programs" in your windows control panel select mysearchdial and remove it.
    2) Open your Firefox browser then click the Firefox tab at the top left and select options. You will need to change the start page settings back to your preferred start page.
    3) Again under the Firefox tab select "add-ons". In the add-ons manager you will need to remove mysearchdial from both "plugins" and "extensions"
    4) In your search bar (top right of address bar" use the drop down menu and select "manage search engines". You can restore your preferred search engine and remove mysearchdial from the menu.
    This should remove all the components of the nuisance hijacker and restore your browser back to your preferred settings. If you are comfortable with a more in depth removal I would also suggest going to your "programs" folder within the "C" drive of your machine and deleting the "MySearchDial" folder altogether. However, only do this AFTER you have uninstalled it from your system and if you are familiar with this type of removal.

  • How do I place an image in an applet

    I'm starting to use applets, and how do you put an image on to the viewer? This doesn't show up, can anyone tell me how?
    This is my code:
    Image my_gif;
    URL base;
    MediaTracker mt;
    public void init()
    mt = new MediaTracker(this);
    try {
    base = getDocumentBase();
    catch (Exception e) {}
    my_gif = getImage(base,"imageEx.gif");
    mt.addImage(my_gif,1);
    try {
    mt.waitForAll();
    catch (InterruptedException e) {}
    public void paint(Graphics g)
    g.drawImage(my_gif,20,20,this);

    and I dunno why you're using media tracker unless you need to load many, many images. In your post it just says one - Even if you do need many images, start with one and build up:-
    img1 = getImage(getDocumentBase(),"picture1.jpg"); //or
    img1 = getImage(getCodeBase(),"picture1.jpg");
    and make sure the images are in the same directory as the applet and test it with the applet viewer first.
    Happy Chrimble Pies

  • How do I place an image and insert a different photo for the "mouse down" state?

    I have placed an image within an accordian widget and when I select the "mouse down" area in the states dialog box, i click "fill" in the toolbar and insert the photo i want to display when the image is clicked but this image is "covered up" by the originally placed image and is not seen in my states dialog box.
    I have done this before when i made rectangles and placed images in rectangles. But i soon realized that you cannot add alternative text to images in rectangles for some frustrating reason.
    How do I place and image and have a different image for the mouse down state?

    Hello,
    This effect can only be achieved when you use the images as a Rectangle Fill. And as you mentioned it above, you cannot add alternative text to images because it is added as a fill and not as a image.
    I would suggest you to post this as a feature request on our "Ideas for features in Adobe Muse" section of the forums : http://forums.adobe.com/community/muse/ideas
    Regards,
    Sachin

  • How do i place an image, jpeg png or otherwise in my Signature in Mail?

    How do I place an image, jpeg, png, or otherwise in my Signatures inside of the Mail Application?

    Go to mail>prefeferences>signatures, select new with plus key signature left column,highlight that signature. Drag image into right cloumn

Maybe you are looking for

  • How to get a macbook pro replacement under warranty?

    I bought my Macbook pro 6 months ago, and it's still under warranty right now. I used some laptops of SONY VAIO & Microsoft before, and I did not experience any problems with them in the first 2 years. This year, I decided to give Macbook pro a try b

  • My full/long review of the new iBook

    Okay, so I remember a few weeks ago, everyone was comparing iBooks to other notebooks, to powerbooks, and just about everything else on the market in this forum. I've had mine for a bit over a month and decided to write a full review on it. So here a

  • Rac node crash

    Hi, I am using 2 node rac enviroment.I am doing some tests for availability.When i poweroff one node of cluster the other node of cluster reboot itself. The voting disk is online. I think this is caused from network heartbeat of private network. So i

  • App store error message on Macbook (2010)

    I'm trying to download an app from the App Store and receiving this error message: "We could not complete your request. There was an error in the App Store. Please try again later. (4)". I've tried clearing the caches in iTunes and that didn't help.

  • Adjusted Style Sheet in portal

    I have read Note 1059450 - Unified Rendering corrections (SAP_BASIS 700 SP13-Pre1) and wonder what actually the Adjusted Style Sheet is. Quote message from Note: Summary Symptom Unified rendering for Web Dynpro ABAP needs to be updated for error corr