Help in Getting Archived Images Organized Before Import

I'm a LR beginner and need advice. I have about 3000 tiff and psd images - about 75Gb, archived on CD and DVD in pretty random order. They aren't on my hard drives. I've kept track of them through iView. Now I want to bring them into Lightroom and use it rather than iView for keeping track of them. I'm also coming to recognize that keeping them online on an external HD is probably a good thing also.
I'm thinking I should get an external HD (250Gb or so) and copy from CD/DVD back to that device. Then organize them into folders in some way that makes sense. Then once I've done that, import them into LR and tag them with keywords. Then split out further into collections.
Does this make sense? I'd appreciate your thoughts and experiences.
Thanks
Brad

Obviously you are going to get much better import performance if your images are on a HD rather than a CD/DVD.
You don't say if you're using Mac or PC, but if it's a Mac, you can do what I am doing. I had previously archived my images to CD and DVD. I use the Mac's Disk Utility program to create a copy of the disk image on the external HD. Then I mount that and have LR import from the disk image.
What this means is that I can use either the original CD/DVD or the external HD files. Once I mount the volume, LR will find the images (red folders come online). This way you have your backup automatically on CD or HD and if you are mobile, you can take either media with you. At home base all your images are on the HD, just a mount away.
If you do this, when creating the disk image in Disk Utility, make sure to choose the 'CD/DVD Master' setting (rather than compressed or other options) because they mount much faster.
Again, this is all the way Mac works, not something specific to LR. I don't know of a Windows equivalent, but there may be something out there.
This doesn't help you with reorganizing as part of your import process, but keywording and collections could do that regardless of the location of the files.

Similar Messages

  • Can't get archived contacts file to import to Contacts

    I have an archived file of all my contacts. I tried to import this file and replace all of the contacts I have now. When I did this, after a moment, I saw the contacts restored and then, after another moment, they all disappeared. Contacts is blank and there are no cards on iCloud either. I've opened and closed the program, clicked iCloud on and off, turned my computer off and on, but the same thing happens over and over: I see them for a moment and then they all disappear. Help!
    http://www.pinterest.com/pin/create/extension/

    Try
    import xmlpowertoolkit.com.sabre.xmlpowertoolkit.*;
    OR
    import com.sabre.xmlpowertoolkit.*;
    I think com.sabre.* will just get you the classes at that "level" ... it doesn't grab the classes in subfolders.
    i hope that works.

  • Help to get better image from cctv

    hi,
    not an expert at all with photoshop use it for basic image and 3d text creation for sites.
    i have cctv footage of my car being vandalised and i want to somehow use photoshop to take an image but is there anyway i can manipulate it to get a better look of car or people in it?
    file is avi so can take screenshot but i want try get them caught.
    any help greatly greatly appreciated.
    many thanks

    People ask this kind of question here from time to time.  I'm sorry to hear your car was vandalized.
    Feel free to post a representative still for a more thorough answer, but be ready to hear that miracles usually don't happen with low quality surveillance video images.
    The human eye / brain combo is better at "seeing" into bad images than almost any software, and if you can't tell in the moving picture who they are then quite likely no amount of image enhancement on individual frames is going to improve recognizability.
    -Noel

  • Toshiba 3D TV conked off after automatic Software Update!! Need help to get it working like before

    Hi there,
    I' Using the Toshiba 46TL963G TV since 5 monts, recetly i asked for the **bleep** new software update and I let it install (ofcourse its connected via ethernet cable). After instalment the TV restarted automatically and everything was fine. I could watch TV well and I turned it OFF. and later Next morning When I turned On, it doesn't function anymore!!
    How Crap is this TV.. It does the automatic software update and it conks off itself!!!
     and the most annoying thing is that I went to this website "http://support.toshiba.com/" to get the support for this TV and when I entered the 8 charachter moderl of my TV , it say, wrong entry. WTF!!!! You dont clain your own product as yours??
    Please help me how can I get my TV working fine as before, else I really have to start working on creating a blog "Reason Why one SHOULD not buy TV from TOSHIBA"
    - Many thanks
    Aravind

    Peter, You _know_ that the firmware update crashes the TV. There have been enough reports of this online, and so much of it here on this forum that you cannot have missed it. Users need to resort to auto-flashing the firmware with files that are not publicly available from your site. Could you not at least remove the offending firmware from the list of things the television can automatically download? Aravind, you might try contacting the toshiba support to get them to send you the correct file to put on an USB device to force the TV to launch the update once plugged. Roaming the forums, it seems like this file should be something like "46TL963G_******_INIT_CLEAR.bin". Kellindil

  • Help me get my image/Ellipse to paint

    Hi: I am currently using Ellipse, and I am starting the basic steps for what will soon be a mini-like game. I need to make an Ellipse and put and image over it. Then make it moves on the x,y, axis using arrow keys.
    I have had numerous people tell me that my code is fine, and that the Ellipse shows up for them, but I have tried for so long and still cannot get it to paint. I have the image in my projects folder, yet the Ellipse/image wont show whenever I go in Applet viewer. It is simply a blank white screen. I have 2 parts to my project....Bullet.java (contains the actual creating of the Ellipse) and myApplet.java(contains the Graphics g etcetc)
    First is Bullet.java:
    import java.awt.*;
    import java.awt.geom.*;
    public class Bullet {
          private Image picture;
          private int xpos, ypos, height, width, speed, xdir, ydir;
          private Ellipse2D.Double c;
          public Bullet(Image p, int x, int y, int w, int h, int s, int xd)
           picture = p;
           xpos = x;
           ypos = y;
           width = w;
           height = h;
           speed = s;
           xdir = xd;
           ydir = 0;
           c = new Ellipse2D.Double (xpos, ypos,  width,  height);
          public void move()
           xpos = xpos + speed*xdir;
           ypos = ypos + speed*ydir;
           c.setFrame(xpos, ypos,  width,  height);
          public int getX() { return xpos;}
          public int getY() { return ypos ;}
          public int getHeight() { return height; }
          public int getWidth() { return width ;}
          public int getXDir() { return xdir ;}
          public int getYDir() { return ydir ;}
          public void setPos(int a, int b) {xpos = a; ypos = b;}
          public void setDir(int x, int y)
           xdir = x;
           ydir = y;
          public boolean intersects(int x, int y, int w, int h)
           return c.intersects(x, y, w, h);
          public void displayBullet(Graphics2D g)
           g.drawImage(picture, xpos, ypos, width, height, null);
          public void paint(Graphics2D g)
           displayBullet(g);
           g.fill(c);
    }and here is myApplet.java
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.*;
    import javax.swing.*; 
    import java.awt.image.*;
    public class myApplet extends Applet implements KeyListener
         BufferedImage imageBuffer;
          Graphics2D  graphicsBuffer;
          private  Bullet s;
          private Timer t;
          Image p;
    public void init()
      imageBuffer = (BufferedImage)createImage(getWidth(), getHeight());
      graphicsBuffer = (Graphics2D) imageBuffer.getGraphics();
      p= getImage(getCodeBase(), "dot.jpg");
      s=new Bullet(p, 20, 250, 50, 200, 20, 0);
      addKeyListener(this);
      setFocusable(true);
      for(int j=0;j<5;j++)
       for(int k=0;k<16;k++)
            p= getImage(getCodeBase(), "dot.jpg");
    ActionListener z = new ActionListener()
      public void actionPerformed(ActionEvent evt)
       s.move();
    paint(graphicsBuffer);
    t=new Timer(10, z);
    t.start();
    public void keyPressed(KeyEvent e)
    if (e.getKeyCode() == KeyEvent.VK_DOWN)
      s.setDir(0,1);
    if (e.getKeyCode() == KeyEvent.VK_UP)
      s.setDir(0,-1);
    if (e.getKeyCode() == KeyEvent.VK_LEFT)
      s.setDir(-1,0);
    if(e.getKeyCode() ==KeyEvent.VK_RIGHT)
      s.setDir(1,0);
    public void keyReleased(KeyEvent e)
    if (e.getKeyCode() == KeyEvent.VK_DOWN)
      s.setDir(0,0); 
    if (e.getKeyCode() == KeyEvent.VK_UP)
      s.setDir(0,0);
    if (e.getKeyCode() == KeyEvent.VK_LEFT)
      s.setDir(0,0);
    if(e.getKeyCode() ==KeyEvent.VK_RIGHT)
      s.setDir(0,0);
    public void keyTyped(KeyEvent e) {} 
    public int width = 3000;
    public int height= 300;
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D) g;
    graphicsBuffer.setColor(Color.white);
    graphicsBuffer.fillRect(0, 0, getWidth(), getHeight());
    graphicsBuffer.setColor(Color.blue);
    s.paint(graphicsBuffer);
    g2.drawImage(imageBuffer, 0,0, getWidth(), getHeight(), this);
         private static final long serialVersionUID = 1L;
    }

    XNOCTISX wrote:
    Hi: I am currently using Ellipse, Sorry, do you mean Eclipse? It took me a few seconds to realize that's not what this word was. Maybe I'm getting old and need to increase my font size.
    You are doing a few things that I don't understand.
    Why are you using getGraphics? That's almost definitely not what you want.
    graphicsBuffer = (Graphics2D) imageBuffer.getGraphics();Have you confirmed that this works as expected?
    p= getImage(getCodeBase(), "dot.jpg");Why:
    for(int j=0;j<5;j++)
    for(int k=0;k<16;k++)
    p= getImage(getCodeBase(), "dot.jpg");
    }Again, why? I'm not extremely familiar with applets, but shouldn't this be a call to repaint() or something of the sort? Or better yet, why don't you use a JPanel (and a JApplet) and do the painting there?
    paint(graphicsBuffer);This doesn't look right to me at all. Why are you using graphicsBuffer instead of g?
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D) g;
    graphicsBuffer.setColor(Color.white);
    graphicsBuffer.fillRect(0, 0, getWidth(), getHeight());
    graphicsBuffer.setColor(Color.blue);
    s.paint(graphicsBuffer);
    g2.drawImage(imageBuffer, 0,0, getWidth(), getHeight(), this);
    }I think you should take a careful look at the painting and drawing tutorials (here's [another |http://download-llnw.oracle.com/javase/tutorial/uiswing/painting/index.html] one).
    If, after reading both of those tutorials, you still have questions, try posting an [SSCCE |http://sscce.org] (without all that extra stuff in it, and preferably not an applet) that demonstrates the problem.

  • When I import selected photos from iPhoto I am getting double images in Aperture...why???

    Does anyone know why I am getting double images when I import from iPhoto to Aperture?

    I found this under Aperture help:
    Sometimes you get two copies of an image imported from iPhoto, and the pair is stacked. Though this might surprise you, the reason is very simple. Whenever you edit in iPhoto, it preserves the original and makes the changes to a copy. When you import to Aperture, you get both the original and the copy from iPhoto.
    If you want the originals only, here's a quick way to remove the copies by using the "iPhoto-edited" keyword:
    Click any image in the project to select it.
    Choose Edit > Select All.
    Choose Stacks > Unstack.
    In the browser's search box (to the right of the magnifying glass), type: iPhoto-edited
    This will cause only iPhoto-edited images to appear in the Browser. Now you can relocate or delete them as you please.
    Note: If you have manually edited the contents of the iPhoto Library or have used any third-party software that sub-manages or attempts to minimize the size of the iPhoto Library (by deleting originals, for example) then you need to exercise caution. Rather than delete the files immediately, consider temporarily storing them in another project until you're sure you have everything you want to keep in the main project.
    Good luck.

  • New "Photos" is a piece of JUNK!  How do I get my image numbers to display as imported like they used to? Can no longer make Events or view old events as before either.

    How do I get my image numbers to display as imported like they used to? Can no longer make Events or view old events as before either.
    If this is replacing Aperture and previous iPhoto it is USELESS...WAY fewer options for editing available. New "Photos" is a piece of JUNK!

    Hi.
    I have just migrated my library from Aperture to photos. All seems to have gone smoothly, except for one thing. All of my photos are 'untitled', whereas in both Aperture, and previously iPhoto, the filename was used for the title. If I hit CMD+I and get info, the title is still there as the filename, as I use the filename for all titles.
    Is there a way to batch copy all filenames as photo titles, this was done automatically in Aperture and iPhoto, as when photos were imported the filename was used automatically.
    Any help appreciated.
    Thanks.

  • Help with getting Images to show in a Rock, Paper, Scissors game

    Hi
    I am working on this Rock, paper, scissors java game and the program works, but I can not figure out how to get the images to load onto the program. So my question is how do I get the images to load up with the program? I am using JCreator for this project. I have created the Basic Java Application project, and then added in the 3 .java files that I need to run the program, but I just can not figure out how or where I need to upload the files. The game works without the images, but I would really like them to show up.
    This is the .java file that calls up the images:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class pss extends JPanel implements ActionListener, ItemListener
    private final Color clrBackground = new Color(163,243,255);
    private final Color clrForeground = new Color(0,0,0);
    private JComboBox cboxWeapon;
    private JTextField txtCPUWeapon, txtWins, txtLoses, txtDraws;
    private JLabel lblPlayerWeapon, lblCPUWeapon, lblWins, lblLoses, lblDraws, lblStatus, lblPlayerWeaponIcon, lblCPUWeaponIcon;
    private JButton cmdPlay, cmdReset;
    private ImageIcon[] imgWeapon;
    private JPanel panRoot, panPlayerArea, panPlayerWeapon, panCPUArea, panCPUWeapon, panStatusArea, panGo, panCounters, panWins, panLoses, panDraws;
    private pssEngine engine = new pssEngine();
    private objCreateAppletImage createImage = new objCreateAppletImage();
    private boolean errorWithImages = false;
    public static void main(String[] args) //With applications, you have to specify a main method (not with applets)
    JFrame.setDefaultLookAndFeelDecorated(true); //Make it look nice
    JFrame frame = new JFrame("Paper Stone Scissors"); //Title
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setResizable(false); //Stops the user resizing the window
    JComponent paneMain = new pss();
    paneMain.setOpaque(true);
    paneMain.setPreferredSize(new Dimension(420,350));
    frame.setContentPane(paneMain);
    frame.pack();
    frame.setVisible(true);
    public pss ()
    cboxWeapon = new JComboBox(engine.getWeapon());
    cboxWeapon.addItemListener(this);
    txtCPUWeapon = new JTextField(engine.getStrCPUWeapon(), 5);
    txtWins = new JTextField("0", 5);
    txtLoses = new JTextField("0", 5);
    txtDraws = new JTextField("0", 5);
    txtCPUWeapon.setEditable(false);
    txtWins.setEditable(false);
    txtLoses.setEditable(false);
    txtDraws.setEditable(false);
    lblPlayerWeapon = new JLabel("Choose your weapon", JLabel.CENTER);
    lblCPUWeapon = new JLabel("The CPU's weapon", JLabel.CENTER);
    lblWins = new JLabel("Amount of wins:", JLabel.RIGHT);
    lblLoses = new JLabel("Amount of loses:", JLabel.RIGHT);
    lblDraws = new JLabel("Amount of Drawss:", JLabel.RIGHT);
    lblStatus = new JLabel("", JLabel.CENTER);
    lblPlayerWeaponIcon = new JLabel("", JLabel.CENTER);
    lblCPUWeaponIcon = new JLabel("", JLabel.CENTER);
    lblPlayerWeaponIcon.setPreferredSize(new Dimension(150,150));
    lblCPUWeaponIcon.setPreferredSize(new Dimension(150,150));
    cmdPlay = new JButton("Go!");
    cmdReset = new JButton("Restart");
    cmdPlay.addActionListener(this);
    cmdReset.addActionListener(this);
    try
    imgWeapon = new ImageIcon[3];
    for (int i = 0; i < 3; i++)
    imgWeapon[i] = createImage.getImageIcon(this, ".src/images/" + engine.getWeapon(i) + ".gif", "Icon for " + engine.getWeapon(i), 13000);
    lblPlayerWeaponIcon.setIcon(imgWeapon[0]);
    lblCPUWeaponIcon.setIcon(imgWeapon[0]);
    catch (Exception ex) //The game works without the images, so carry on
    errorWithImages = true;
    setLayout(new BorderLayout());
    panRoot = new JPanel(new BorderLayout());
    panPlayerArea = new JPanel(new BorderLayout());
    panPlayerWeapon = new JPanel(new BorderLayout());
    panCPUArea = new JPanel(new BorderLayout());
    panCPUWeapon = new JPanel(new BorderLayout());
    panStatusArea = new JPanel(new BorderLayout());
    panGo = new JPanel();
    panCounters = new JPanel(new GridLayout(3,1,2,2));
    panWins = new JPanel();
    panLoses = new JPanel();
    panDraws = new JPanel();
    add(panRoot, BorderLayout.CENTER);
    panRoot.add(panPlayerArea, BorderLayout.WEST);
    panPlayerArea.add(panPlayerWeapon, BorderLayout.NORTH);
    panPlayerWeapon.add(lblPlayerWeapon, BorderLayout.NORTH);
    panPlayerWeapon.add(cboxWeapon, BorderLayout.SOUTH);
    panPlayerArea.add(lblPlayerWeaponIcon, BorderLayout.SOUTH);
    panRoot.add(panCPUArea, BorderLayout.EAST);
    panCPUArea.add(panCPUWeapon, BorderLayout.NORTH);
    panCPUWeapon.add(lblCPUWeapon, BorderLayout.NORTH);
    panCPUWeapon.add(txtCPUWeapon, BorderLayout.SOUTH);
    panCPUArea.add(lblCPUWeaponIcon, BorderLayout.SOUTH);
    panRoot.add(panStatusArea, BorderLayout.SOUTH);
    panStatusArea.add(panGo, BorderLayout.NORTH);
    panGo.add(cmdPlay);
    panGo.add(cmdReset);
    panGo.add(lblStatus);
    panStatusArea.add(panCounters, BorderLayout.SOUTH);
    panCounters.add(panWins);
    panWins.add(lblWins);
    panWins.add(txtWins);
    panCounters.add(panLoses);
    panLoses.add(lblLoses);
    panLoses.add(txtLoses);
    panCounters.add(panDraws);
    panDraws.add(lblDraws);
    panDraws.add(txtDraws);
    panRoot.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
    setBackground(clrBackground);
    panRoot.setBackground(clrBackground);
    panPlayerArea.setBackground(clrBackground);
    panPlayerWeapon.setBackground(clrBackground);
    panCPUArea.setBackground(clrBackground);
    panCPUWeapon.setBackground(clrBackground);
    panStatusArea.setBackground(clrBackground);
    panGo.setBackground(clrBackground);
    panCounters.setBackground(clrBackground);
    panWins.setBackground(clrBackground);
    panLoses.setBackground(clrBackground);
    panDraws.setBackground(clrBackground);
    lblPlayerWeapon.setForeground(clrForeground);
    lblCPUWeapon.setForeground(clrForeground);
    lblWins.setForeground(clrForeground);
    lblLoses.setForeground(clrForeground);
    lblDraws.setForeground(clrForeground);
    txtWins.setForeground(clrForeground);
    txtLoses.setForeground(clrForeground);
    txtDraws.setForeground(clrForeground);
    txtCPUWeapon.setForeground(clrForeground);
    public void reset ()
    cboxWeapon.setSelectedIndex(0);
    lblStatus.setText("");
    engine.reset();
    public void actionPerformed (ActionEvent e)
    if (e.getSource() == cmdReset)
    reset();
    else
    lblStatus.setText(engine.play(cboxWeapon.getSelectedIndex()));
    txtCPUWeapon.setText(engine.getStrCPUWeapon());
    txtWins.setText(Integer.toString(engine.getWins()));
    txtLoses.setText(Integer.toString(engine.getLoses()));
    txtDraws.setText(Integer.toString(engine.getDraws()));
    if (!errorWithImages)
    lblCPUWeaponIcon.setIcon(imgWeapon[engine.getCPUWeapon()]);
    public void itemStateChanged (ItemEvent e)
    if (!errorWithImages)
    lblPlayerWeaponIcon.setIcon(imgWeapon[cboxWeapon.getSelectedIndex()]);
    }Here is the other .java file that calls on the Images:
    import java.awt.*;
    import java.io.*;
    import javax.swing.ImageIcon;
    public class objCreateAppletImage
    public void objCreateAppletImage ()
    //If an error occurs (or is thrown by me) it will be thrown to the next level up, and either caught or thrown
    public ImageIcon getImageIcon (Object parentClass, String path, String description, int fileSize) throws Exception
    int count = 0;
    BufferedInputStream imgStream = new BufferedInputStream(parentClass.getClass().getResourceAsStream(path));
    byte buff[] = new byte[fileSize];
    if (imgStream == null) //If doesn't exist
    throw new Exception("File not Found");
    try
    count = imgStream.read(buff);
    imgStream.close(); //Closes the stream
    catch (IOException ex)
    throw new Exception("Corrupt file");
    return new ImageIcon(Toolkit.getDefaultToolkit().createImage(buff), description); //Creates the image from the byte array
    }Could someone please help me? I really have no idea and I would like this to work.
    Thank you
    Frank

    Oh, thank you. I will not do that in the future.
    I am not entirely sure how I would use the getImage method in an Applet. I would prefer to just use the code that I have currently, unless the addition of making the program an Applet only adds a small amount of code. But then even still, I am not entirely sure what I would write in the .class file to make the images load. And then I would not really know how to properly incorporate the pss.java file and the .class file together so they read off of each other.

  • Tried to install the latest update on my ipad. i get an image of "itunes" with a connecting cord. hasnt changed in three hours. if i turn it off, it goes right back to same image on black background. i am stuck, please help me, thanks

    i tried to install the latest update on my ipad. i get an image which says I tunes with a cord to plug in. it is on a black background.. it has been like this for three hours now. if i turn it off and then on again that is the only page that appears. i am stuck. please can anyone help me? thanks.

    It's too bad you lost stuff. I would recommend that you back stuff up before the next one. For example, iOS8 will be out sometime this fall. Just in case you experience the same thing again, do a backup before you do the update.

  • HT1386 When trying to down load photos I get this message: iPhoto cannot import your photos because there was a problem downloading an image. What should I do to restore syncing my phone?

    I can't sync my iPhone 4 photos with my deck top. It all just stoped working. When trying to sync photos I get the following message:
    iPhoto cannot import your photos because there was a problem downloading an image.
    What do I need to do to get the syncing process back to normal?

    Hi there obywon!
    I have an article for you that can help you find some other ways to import those pictures from your iPhone onto your computer. You should try a couple of different programs that would import the photos into your computer. This first article can tell you the different programs that you will want to try when attempting to import photos:
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/ht4083
    If you are still having issues with importing those photos, you will want to see this article for next steps on resolving this issue:
    iOS: Unable to import photos to computer
    http://support.apple.com/kb/ts3195
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Aperture Preview Images Before Import

    Hi,
    I have a doubt as to wheter I missinterpreted or a function is in fact not enabled in Aperture altought it is mentioned in the description of Aperture features.
    In this webpage https://www.apple.com/aperture/features/#import on the "Preview Images Before Import" area one can read "Double-click any image in the Import window to view it at a larger size. You can also play video and audio clips before importing them.". Thou when I try to preview (or Quick Look) an image or video in the Import window from my iPod touch by double-clicking nothing happens ?!? Did I missinterpret? Is this behaviour not valid for iOS (iPod's or iPhone's) devices for some reason?
    Please help me understand as previewing a video is extremelly valuable for me to know what to name the file before importing.
    Thank you.
    André

    I must say this seems to me like a slightly false (or at the least missleading) advertisement.
    I understand that iOS can pose a different protocol, but then one should not use a sentence like "Double-click any image in the Import window ".
    You may want to send this feedback to the developer team using the feedback form:
    Apple - Aperture - Feedback
    The documentation could frofit from some corrections-

  • How do I get CDs that have been imported into iTunes library to sync/transfer to phone?? very frustrating and any help would be appreciated. all the material i purchased from itunes transferred fine, but CDs won't. Please help!

    How do I get CDs that have been imported into my iTunes library to sync/transfer to my iPhone?? All the material that I purchased from iTunes has transferred just fine, but although the CDs will import to iTunes, they will not sync up with my phone. How do I do this?? I am very frustrated and would greatly appreciate any help.

    In what format did you import the cds?
    I have never had an issue with this.

  • I need a help !!! Please  ,I dropped my iPhone 5 in toilet and I didn't get fast  maybe 5mins before I get it because I didn't notice drop it and it won't work now  it's almost 1week I'm waiting it  still  it don't work ...

    I need a help !!! Please  ,I dropped my iPhone 5 in toilet and I didn't get fast  maybe 5mins before I get it because I didn't notice drop it and it won't work now  it's almost 1week I'm waiting it  still  it don't work ... But when I plug my charger it goes light and show up apple logo and die again I don't know what to do and it's so expensive here at Japan pls.. Help maybe there still way to get it work again
    Thank you ,Rean

    At this point it's clear that it's been damaged and will need to be take or sent to Apple for replacement.
    Regards.

  • Need help with getting images to look smooth (without the bitmap squares) around the edges. When I transfer the image from pictures, it sets itself into the InDesign layout, but with square edges. I need to find out how to get it to look smooth?

    Need to find out how to get my images transferred into an InDesign layout without the rough edges, as with a bit map image, but to appear with smooth edges in the layout. I can notice it more when I enlarge the file (pic). How can I get it to appear smooth in the finished layout. Another thing too that I noticed; it seems to have effected the other photos in the layout. They seem to be
    pixelated too after I import the illustration (hand drawn artwork...)? Any assistance with this issue will be greatly appreciated. Thanks in advance.

    No Clipboard, no copy & paste, as you would not get the full information of the image.
    When you paste you can't get the image info from the Links panel, but you can get resolution and color info either via the Preflight panel or by exporting to PDF and checking the image in Acrobat.
    Here I've pasted a 300ppi image, scaled it, and made a Preflight rule that catches any image under 1200ppi. The panel gives me the effective resolution of the pasted image as 556ppi. There are other workflow reasons not to paste—you loose the ability to easily edit the original and large file sizes—but pasting wouldn't cause a loss in effective resolution or change in color mode.

  • I connected a digital camera memory chip with approximately 100 photos on it. The photos showed up in iPhoto. I believe I deleted the photos from the memory chip before importing them. Is there any way I can get the photos back?

    I connected a digital camera memory chip with approximately 100 photos on it to import into iPhoto. The photos showed up in iPhoto. I believe I deleted the photos from the memory chip before importing them to iPhoto. Is there any way I can get the photos back?

    Terence, thanks that site is a gem...have to explore it more fully at home as it drove security here crazy
    Looks like just the ticket for saving mistakes.

Maybe you are looking for