A copied image gets named what?

OK, nobody has answerd my previous query/inquiry, so I'll reword it this way: When you copy an image, what does APE version 8 rename it? e.g., if I have an album open in Organizer, right-click and image named 123.CR2, and select Copy, what is the Copy named (so I can search for it)?

Yeah, you can do that.
Select your image in the Organizer.
Open it for Editing with the Editor
Do whatever edits you need to do
Save it
In the File Save dialog box, there is an option called "Save in Version Set with Original"
Make sure it is checked
Also, make sure "Include In Organizer" is checked
Save away.
What will happen is that a new file will be created, imported into the Organizer, and "grouped" with the first image in something called a Version Set.
If you didn't want to use Version sets, you could simply do a Save As from the Editor to save your .PSD file, or, leave the "Save in Version Set with Original" box unchecked.
There isn't any "duplicate" type functionality in the Organizer.

Similar Messages

  • Sampling or Copying I get error "what type of file is this?"

    How can I sample .m4a files from itunes? Logic acts as if it does not recognize the file the first time then the second time it will ask me "what kind of file is this?". I've tried shortening the file name, converting the file in quicktime pro but it won't let me save the file under a different name. It's as if Logic Pro 7 has a mind of its own certain songs I just drag on to the arrange window and it copies fine others it does nothing please someone help me.

    these are copy protected files .m4a - i'm pretty sure.
    otherwise try changing the extension to a recognized format ie .mp3.
    or, open it in quictime and get info, it shoud tell you what type of file it is. then put the appropriate extension on the end

  • JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    16bit? Pixels extending beyond the canvas? (from a crop with delete unused pixels turn off).  Have you previously been saving PSD files?
    IME you sometimes have to tell Photoshop that the first save of a session is JPG, and it remembers from there on.  The way to 'tell' Photoshop that JPG, or PDF, or PNG etc are now your preferred format is to Ctrl (Cmd) click on that format in the Save As drop down list.  So long as the file does not have parameters that your chosen format does not support, then this should work for you.
    [EDIT]  Just noticed that you did include 'Crop' in the subject line.  Do you have 'Delete cropped pixels' checked?

  • I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    It's "aspect ratio", not aspect "ration". 
    It's what determines whether you have square pixels ("normal") or, if rectangular pixels, what the aspect ratio (width : length)  of that rectangle is.
    It's explained in the Help files.  I cannot go into more detail because you have neglected to provide information about your platform and exact version of Photoshop.
    Example in next post

  • I just purchased the hunger games on blu-ray with digital copy. when I try to download the HD digital copy it gets to about 80% compete then stops with a download error (-50). What is that how do I fix?

    I just purchased the hunger games on blu-ray with digital copy. when I try to download the HD digital copy it gets to about 80% compete then stops with a download error (-50). What is that how do I fix?

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • How to copy images from another MC in reversed order??

    Hi everyone,
    I'm new to AS3 and have been fighting and searching for a solution to this problem for a week now, and I'm VERY close!
    I crated a MC holding of a series of images (about 50) and I jump around in it using plenty AS3 scripts (most of which I don't fully understand yet, but I'm working on that to! )
    I had to find a way to "rewind" (= play backwards) the MC. Since there is a stop(); command in almost every frame, prevFrame does not work and if I put that in a loop, it goes WAY to fast (but worked).. So I could think of only one way...
    Create a new (reverserd) MC with the same image sequence ald reverse it manually and play that one.
    This all works fine (very proud of it ).
    Now my question:
    To get this to work for multiple image sequences, I have to load all images twice (once in MC_1 and again in MC_2 and select them and reverse them).
    Not a big one, unless you want to create MANY of those SWF's...
    Is it possible to load the 50 images of the first MC in reverse into the second MC dynamically? JUST the images, noting else.
    extra info: the MC_2 is already in the lib(empty) and placed on the stage.
    something like:
    var pointer:Number=1;
    for (var:i:Number=50;i>=0;i--) {
    get MC_1.picure(var);
    put it in MC_2.frame(pointer);
    pointer = pointer + 1;
    All help is welcome and please take into account that I have little experience and copy most of my scripting from people like you
    T.I.A.
    Melluw

    I tried your advice (thanks for that)
    The event I already have is the mouse leave
    I //-d out the part I removed (what did work)
    The code I ended up with is:
    function Start() {
    stage.addEventListener(Event.MOUSE_LEAVE, cursorHide);
    function cursorHide(evt:Event):void {
    var currFrame = MC_1.currentFrame;
    if (CCW == true) {  //it is true in this case
      movStart = (50 - currFrame);
    else {
      movStart = currFrame;
    if (movStart>25) {
      MC_1.prevFrame();
    // removed swapChildren(MC_1, MC_2); // This is the part I removed
    // removed MC_2.gotoAndPlay(movStart);
    else {
      MC_1.gotoAndPlay (movStart);
    And if I leave the stage on the part where movStart is indeed >25
    Nothing happens,
    So I guess this is not what you meant
    Subject: Action Script 3 how to copy images from another MC in reversed order??
    I cannot direct you in the loading of the images approach, it will be too complicated, and will probably not work anyways... when you move away from a frame that has dynamic content, you lose the content.  So basically, there is nothing practical in taking that approach.
    I do niot understand what the problem will be with the enterFrame/prevFrame approach. If everything you can do with the mouse is already used (which I doubt) by the first mc, then there is nothing else you can do with this file.  You probably just need to rethink your control scheme.  You should search Google for "AS3 slideshow tutorial", and to lighten up your design, add "XML" in that search.
    >

  • Still images get mixed - Premiere elements 9

    I make a series of say 3 or 4 still jpg images as titles for my movie. All with identical background but with different text. When I drag them to the timeline the first one persists but the others in the sequence will not show when I play them in the preview window. This does not happen if the images are completley different. Renaming the files has no effect. What is happening?

    Bob,
    I understand what you mean about the appearance of movie clips in the timeline, I don’t think that is the problem. With every other video editor I have used if I drag a number of still images into the timeline they will all behave like separate clips for however longer I want them and they will each show up in the timeline and in the preview window as I scrub along. At the moment instead of a mini movie of 4 still images I get a movie of the first image in the line repeated for times. The other image files are named in the timelinebut cannot be viewed in the edit and they don’t appear in the saved movie I am doing something wrong somewhere.
    Geoff
    .From: N9JCR
    Sent: Sunday, March 04, 2012 2:49 PM
    To: tangledbliss
    Subject: Still images get mixed - Premiere elements 9
          Re: Still images get mixed - Premiere elements 9
          created by N9JCR in Premiere Elements - View the full discussion

  • Copy Image command is broken.

    I have just completed an upgrade to Mac OSX 10.3.9, the security update and the accompanying update to Safari to 1.3.2.
    And my wife pointed this out to me... the Contol-Click "Copy Image" function is not broken, as it does not copy the image to the clipboard, but rather the URL of the image or the LINK is what gets pasted into other app.
    According to Safari Help, that is NOT the correct fucntionality.
    To save an image, drag it from the webpage to the desktop or a document in another application. You can also hold down the Control key and click the image, then choose Save Image To to save it as a file or Copy Image to paste it in another document.
    The cntl-Click options pop-up now read:
    "Save Image to the Desktop
    Save Image"
    This is definitely a Safari glitch, as Drag and Drop still works to move the image, not the URL or Link. I was also able to do a proper "Save As.. " with the ablility to select the destination, this in now gone as well.
    Bug, or new (crappy) "feature?"
    Anyone run into this, or have a fix to restore the functionality?
    Kurt Griffith
    Nanuet, NY
    G4 Quicksilver 733 1GB Ram   Mac OS X (10.3.9)  

    Ahhh... that is helpful. Gets me halfway there.
    Possibly the issue is that some coding changes in either Safari or OS X have the function work correctly in 10.4.x but are glitchy in 10.3.9... ?
    The same problem persists in Safari 1.3.2 (on our iBook) in 1.3.9
    Ahhh.. interesting (not all apps have "Paste Special"...) Works in MS Word X, but not Appleworks. Preview "New From Clipboard" works as advertised.
    Problem could just as easily be with Appleworks somewhat outdated code? 6.2.4 dates to 2002.
    Thank you Tom, for giving me some avenues to investigate.

  • I am unable to email an image from camera roll. the image gets "stuck". cannot input email address or subject line. am unable to cancel and go back to camera roll

    i am unable to email images from my camera roll. the image gets "stuck". cannot insert email address or subject line. cannot cancel... return to camera roll.
    what to do. i tries taking new picture and sending it in an email... same thing... gets "stuck "
    Waht to do ?

    Hello lohmann8,
    Thank you for providing so much detail about the issue you are experiencing with emailing photos from the Camera Roll.
    The first thing I recommend is quitting and relaunching the applications on your iPhone:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    You can find the full article here:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If you are still seeing the same issue after quitting and relaunching the Photos and Camera app, I recommend restarting your phone and then resetting if it's still not working:
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    You can find the full article here:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, the last thing I recommend is backing up and restoring your iPhone:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Adobe Reader 9 Mac - cannot copy images

    I upgraded to Reader 9, and another person in our office is using 8 with the same problem. We can no longer copy images out of a PDF - when we try to paste an image that appeared to be copied we only get a gray box. We've tried many ways including pasting directly into Word or Excel, choosing 'New from Clipboard' in Photoshop Elements, creating a blank Photoshop file and pasting, etc. This has works perfectly in Acrobat 5.0 and in Reader 7.0.5 (which I have gone back to using - I'm sure glad I waited before removing it from my system!).
    Any thoughts?

    (Gary_Roger) wrote:
     I was wrong on both counts. With the help of the local Apple store, I found a solution. First, I Moved to Trash all adobe related files/folders from /Users/*myaccount*/Library/Cache and /Users/*myaccount*/Library/Preferences. When I started "Adobe Reader 9", I at least got the license agreement but again it failed with an "internal error". I then moved the /Users/*myaccount*/Library/Application Support/Adobe folder to my desktop. I was then able to start "Adobe Reader 9" successfully.
    I was having the "Internal Error" message on all my repeated installs of Reader in Mac OS 10.6 ("Snow Leopard") and this fixed it for me. The only thing I did different, was after the app finally launched without an error, I dragged all the non-Acrobat Reader folders inside of /Users/*myaccount*/Library/Application Support/Adobe back to the folder. I then re-launched Reader just to check and all was fine.
    Thanks! This fixed my Adobe Reader on Snow Leopard problem.

  • When I am finished editing an image in Lightroom, what files or versions should I have in my database of images?

    When I am finished editing an image in Lightroom, what files should I have in my Library?  I start with a RAW file or a tiff scan from film. I label that "A" as the archived file. I make a virtual copy to work on in the Develop module. When I am done, I save a file as a Print file with dimensions of the print.  Since Lightroom is non-destructive, do I need to save any other versions?  For instance, in Photoshop since the crop is destructive,
    I edit an uncropped version and do the crop when I am working on the Print version.  What should I have for the most flexibility over time in Lightroom? 
    I use Lightroom CC on a IMAC desktop.  My photos are on a separate hard drive and are also backed up offline.  Im running OSX10.9.4.

    You don't need to make a virtual copy before you edit the photo (this is optional, but most people don't bother as its extra work with little or no benefit). EXCEPTION: If you are doing multiple crops of the image, you would need virtual copies in that case, created after all other editing is completed.
    You can't "save" from Lightroom, you can "export". (It's a terminology thing) You would need to export a photo at the desired dimensions for printing, but there's no need to retain this exported photo, you can consider it temporary and delete it once the print has been made, knowing that you can always re-create it exactly from Lightroom if you need it.
    So to answer the question in your title, all you need to retain on your hard disk is your original image (and in the EXCEPTION case where you have multiple crops of the image, you would retain the multiple virtual copies in Lightroom).

  • TS1424 I need help, see there is this Digital Booklet that is supposed to be included with the purchase of an album but i still for some odd reason haven't and can't get it, what is going on?!?!

    Details:
    Album: We Can Make The World Stop (by: The Glitch Mob)
    Songs: I bought all three songs in the album which counts as buying the album yet the Digital Booklet won't download like it says it should due to the album being bought which is what I did.
    Digital Booklet - We Can Make The World Stop - EP
    Question: Can someone please help me get this digital booklet that i should have already had a while ago?

    Thinking back to when I've seen displays of newsprint that's been greatly magnified, being able to see the halftone screen pattern seems important.  It gives the display a look of authenticity.
    You say the library can scan at 600 ppi.  If that's 600 ppi of a greatly reduced image on a piece of microfiche, it may not give you the resolution you're looking for, and it's entirely possible that getting a quality optical print then scanning it would give you better.
    I don't see how you can plan how to proceed in anything like specific detail if you don't have an image that represents what you're really going to be starting with in detail.  Perhaps getting one scan might be a good idea.
    After that, you just need to figure out what ppi your final overall panel design is going to be at, and upsample the newspaper clippings to match, so that they're the size you need them to be.
    -Noel

  • How do I copy image from web and paste into Open Office Document

    Whenever I choose Copy Image from Safari and then paste into open office, I only get the image url and not the image. I am sure that I am not selecting Copy Image Address.
    When I copy images from my iTunes album artwork and paste into open office it works fine.
    Any thoughts?

    I have done the same thing using Firefox and it works just fine. It seems to be an issue with Safari.

  • How do I copy images to buffer in Vision Builder Eval

    I have an evaluation copy of Vision Builder.
    I want to load images from files and do an image divide, yet when I copy images to the buffers, the buffers remain empty. Help!

    It sounds like you're using the Vision Builder AI eval and launching the Image Assistant tool to process your image. Buffers in the Image Assistant don't carry over to other steps. However, in one session of Image Assistant you should be able to save an image to a buffer and retrieve it in the same session. If this is not the case, then you should go to ni.com/ask to get in touch with an NI Applications Engineer.
    Kyle V

  • When using the smart brush tool, my image gets distorted.  Is there anyway to fix this?

    When using the smart brush tool, my image gets distorted.  Is there anyway to fix this?

    What preset have you selected?
    Can you post a screenshot showing the distortion.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

Maybe you are looking for

  • Who do I talk to about my product idea for iPhones ?

    Can anyone suggest the process of working with apple on an accessory for the iPhone. I do not expect to make millions and millions off this idea but at the same time don't want apple to say... "That's a stupid idea" then go and release it themselves.

  • Create a new document in Sharepoint Document Library/OneDrive on iPad/Safari

    Hi, My users are having trouble creating a new document from OneDrive in Safari on their iPads. The screen goes grey like its going to show the popup to select the new file type, but the popup never comes up. If they clear their cache, it works for e

  • Probelm of displaying alv fields in Spool display

    In report using alv grid, i am able to see all columns in normal output displauy but in spool display some last columns are not displaying, so what could be the problem? Edited by: samdup on Apr 9, 2010 1:51 PM

  • Posting date to accounting for billing document

    Dear Experts In SD cycle, we have created billing document in first quarter. As per our customization settings the billing document was created with Posting block. Now today i.e. in second quarter we want to release this billing document to accountin

  • Error MEPO000

    Hi friends , When i am saving the PO , the system showing error message " Purchase order still contains faulty items Message no. MEPO000" , so what should be the problem . When give tax code in invoice tab then only it appear . Please reply , Raghu