Hellpppp

my i pod will not sync, it keeps saying there is a duplicate file name, whattt?? ive deleted and reinstalled itunes numerous times along with restoring my i pod, someone help me! keep in mind that im not good with technology!

You probably moved the iPhoto Library folder to the external drive and opened it like Beverly mentioned. Check to see if there's an iPhoto Library folder in your Pictures folder. If so, move it to the desktop and launch iPHoto like mentioned by Beverly. Opt to find a library and locate the one on the external.
What might have happened is iPhoto was launched without the drive mounted or before it was fully mounted. To prevent that from happening in the future, create a text file and title it "iPhoto Library". Then remove the extension and put it in the Pictures folder. If you were to open iPhoto without the external HD mounted you will get the window telling you it could not find the library and do you want to find it. That will let you know that the external is not mounted or up to speed.
Do you Twango?
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • HELLPPPP code not doing what it is sepose to do!!

    i got this code and it is sepose to pas 3 variables , total, seat type and nr_seats. this happens then user clicks on "confirm booking" in main screen1. and the variables are passed to a textbox in mydialog1.
    Can anyone please help???
    Mainscreen1
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class mainscreen1 extends Applet implements ItemListener, ActionListener
    private Image layout1;
    private int frame;
    private int xpos,ypos,xdir,ydir;
    public TextField tn, tt1, tt2, total;
    public int value, ticketnum, sum, nr_seats;
    public Label title, seat, need, payable;
    public Button b1, b2, b3;
    Mydialog1 d;
    String c1;
    public void init()
         setBackground(Color.pink);
    setSize (600, 460);
    setLayout(null);
    title=new Label("The Almeida Theater booking system");
         title.setBounds(100,0,400,30);
         title.setFont(new Font("Verdana", Font.PLAIN,24));
         add(title);
    seat=new Label("Please choose a seating location:");
         seat.setBounds(300,40,190,20);
         seat.setFont(new Font("Verdana", Font.BOLD,12));
         add(seat);
    payable=new Label("Total Payable:�");
         payable.setBounds(300,390,100,20);
         payable.setFont(new Font("Verdana", Font.BOLD,12));
         add(payable);
         need=new Label("Please enter the number of seats needed:");
         need.setBounds(300,180,245,20);
         need.setFont(new Font("Verdana", Font.BOLD,12));
         add(need);
         CheckboxGroup radio = new CheckboxGroup();
         Checkbox Stalls = new Checkbox("Stalls", true, radio);
         Stalls.setBounds(490,40,60,25);
         add(Stalls);
         Stalls.addItemListener(this);
         Checkbox Balcony = new Checkbox("Balcony", false, radio);
         Balcony.setBounds(490,65,65,25);
         add(Balcony);
         Balcony.addItemListener(this);
         Checkbox Concessions = new Checkbox("Concessions", false, radio);
         Concessions.setBounds(490,90,94,25);
         add(Concessions);
         Concessions.addItemListener(this);
    Button b1=new Button("Quote");
         b1.setBounds(20,395,80,30);
         add(b1);
         b1.addActionListener( this );
         Button b2=new Button("Confirm booking");
         b2.setBounds(110,395,100,30);
         add(b2);
         b2.addActionListener( this );
         Button b3=new Button("Clear");
         b3.setBounds(300,395,100,30);
         add(b3);
         b3.addActionListener( this );
         tt1=new TextField(60);
         tt1.setBounds(300,250,270,20);
    add(tt1);
         tt1.setEditable (false);
         tt1.addActionListener(this);
         tt2=new TextField(60);
         tt2.setBounds(300,300,150,20);
         add(tt2);
         tt2.setEditable (false);
         tt2.addActionListener(this);
         tn=new TextField(3);
         tn.setBounds(545,180,30,20);
         add(tn);
         tn.addActionListener(this);
         total=new TextField(5);
         total.setBounds(400,390,45,20);
         add(total);
         total.setEditable (false);
         total.addActionListener(this);
         xpos = getSize().width/-1400;
         ypos = getSize().height/12;
         layout1 = getImage(getDocumentBase(),"layout1.gif");
         repaint();
    public void itemStateChanged(ItemEvent e)
         String c1 = (String) e.getItem();
         if (c1 == "Stalls")
              value = 20;
         else if (c1 == "Balcony")
              value = 15;
         else
              value = 10;
         tt1.setText("You have chosen to sit in the " + c1 + " area");
         tt2.setText("Each seat will cost: �" + value);
         repaint();
    public void clearValue()
              //cb.setSelectiob
              total.setText("");
              tt1.setText("");
              tt2.setText("");
              tn.setText("");
    public void actionPerformed ( ActionEvent e )
    if( e.getActionCommand() == "Quote" )
         int nr_seats = Integer.parseInt(tn.getText());
         total.setText("" +nr_seats*value);
    else if( e.getActionCommand() == "Confirm booking")
         int nr_seats = Integer.parseInt(tn.getText());      
         total.setText("" +nr_seats*value);   
         d = new Mydialog1();      
         d.set_text(c1, nr_seats, total);
    else if ( e.getActionCommand() == "Clear")
         clearValue();
              ticketnum = Integer.parseInt(tn.getText());
              repaint();
         public void paint(Graphics g)
              g.setColor(Color.black);
              g.drawString ("You have chosen:" + ticketnum +" seats", 300, 365);
              g.drawImage(layout1,xpos,ypos,null);
    Mydialog1
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Mydialog1 extends Frame implements ItemListener, ActionListener
    public Label title, custd, custfn, custfn, custad;
    public Button b1, b2;
    public TextField cfnt, csnt, cdt, tf;
    public int value, nr_seats, total;
    creditcard cc;
    String c1;
    public Mydialog1() //constructor
         init();
    public void init()
         setBackground(Color.yellow);
    setSize (500, 500);
    setLayout(null);
         setLocation(320,140);
         setVisible(true);
         //Mydialog1(Frame f);
    title=new Label("Almeida Theatre booking system");
         title.setBounds(150,20,185,30);
         add(title);
         CheckboxGroup ct = new CheckboxGroup();
         Checkbox Mr = new Checkbox("Mr", true, ct);
         Mr.setBounds(5,180,36,25);
         add(Mr);
         Mr.addItemListener(this);
         Checkbox Mrs = new Checkbox("Mrs", false, ct);
         Mrs.setBounds(50,180,42,25);
         add(Mrs);
         Mrs.addItemListener(this);
         Checkbox Miss = new Checkbox("Miss", false, ct);
         Miss.setBounds(95,180,45,25);
         add(Miss);
         Miss.addItemListener(this);
    custd=new Label("If above booking details are correct please fill in your      deatils below");
         custd.setBounds(5,150,400,30);
         add(custd);
         custfn=new Label("ForeName");
         custfn.setBounds(5,220,60,20);
         add(custfn);
         cfnt=new TextField(60);
         cfnt.setBounds(70,220,150,20);
    add(cfnt);
         custsn=new Label("SurName");
         custsn.setBounds(100,220,60,20);
         add(custsn);
         csnt=new TextField(60);
         csnt.setBounds(150,220,150,20);
    add(csnt);
         custad=new Label("Address");
         custad.setBounds(5,320,37,20);
         add(custad);
         cdt=new TextField(60);
         cdt.setBounds(70,320,270,20);
    add(cdt);
         tf = new TextField();
    tf.setBounds(5, 80, 400,20);
    add(tf);
         setVisible(true);
         Button b1=new Button("Close");
         b1.setBounds(20,440,80,30);
         add(b1);
         b1.addActionListener( this );
         Button b2=new Button("Proced with booking");
         b2.setBounds(110,440,150,30);
         add(b2);
         b2.addActionListener( this );
    public void itemStateChanged(ItemEvent e)
         String c1 = (String) e.getItem();
         if (c1 == "Mr")
              value = 20;
         else if (c1 == "Mrs")
              value = 15;
         else
              value = 10;
    public void actionPerformed( ActionEvent e )
    if( e.getActionCommand() == "Close" )
    this.dispose();
    else if( e.getActionCommand() == "Proced with booking")
    cc = new creditcard();
         public void set_text ( String c1, int nr_seats, int total )
         tf.setText ("You have chosen to sit in the " + c1 +" area" +" " nr_seats " the total is " +total);}

    Are you sure that the variables you are passing contain the correct information? You need to be able to find the source of the problem, ie do the variables contain the wrong information, are you passing the correct variables, are you displaying them correctly once you get them?
    Also, the following line should not even compile correctly - you cannot have 2 custfn Labels.
    public Label title, custd, custfn, custfn, custad;If you are running this as an applet in a browser, System.out.print() statements will be displayed in the Java Console. If you are running through an applet viewer, you should be able to display messages also.

  • The iOS 5.0.1 won't download for my ipod and now i can't open any of my apps. HELLPPPP!!!!!!!!!!!

    I'm trying to download the new iOS 5.0.1 for my ipod touch and it keeps telling me that i need to check my internet settings even though my internet is fine. And now I can't use any of my apps they just flicker and go back to the home screen..

    - For the download, disable the computer's security software during the download and update.
    - For the other problem:
    --- Reset the iPod.  Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    --- Download/install a new app.
    --- iOS: Troubleshooting applications purchased from the App Store

  • Pandora won't work on my MacBook pro. I've emptied the cache and updated my software and adobe flash. Hellpppp please!

    This has been going on for about two months now.  I've done everything I know to do. Can someone please help me.

    When you asked the folks at Pandora what did they say?

  • Problem with WLAN in my E51 phone...

    hi again everyone, sorry for bothering you, but when i try to connect to wlan through my own router found at home , the web site says: No gateway reply...
    what can i do to solve this?? am getting crazy...hellpppp plz

    Is DHCP enabled on your router ?
    Nokia E71 / RM-346 (0561155) / 110.07.127
    Nokia E51 / RM-244 (0552343) / 300.34.56

  • "the feature you are trying to use is on a network resource that is unavailable..." HELP PLEASE!!!!

    Hello. I have a DELL Laptop with Windows 7 (64-bit). I've always installed/downloaded the newest up-to-date iTunes. Now all of the sudden, i can't install the new iTunes 10.5 (i've had this problem since the previous version of iTunes-before the 10.5) It would start the downloading process but then all of the sudden (towards the end) i get an error message saying "the feature you are trying to use is on a network resource that is unavailable." i follow the steps the error message provides me but nothing is working! I can't uninstall (to reinstall it) either! I could really use a solution for this pleaseeee!!! It's getting on my nerves!!! i really want to keep my iPhone 4 and my music with iTunes. So can anyone please hellpppp!!!!

    Hello. Actually I FINALLY found a SOLUTION that works. It worked for me, I hope it works for you. Go to this website: http://support.microsoft.com/mats/Program_Install_and_Uninstall  click RUN NOW and follow the instructions. This "fix it" will uninstall iTunes completely! (without having to remove any other apple-related programs). Make sure when you click on iTunes you choose to UNINSTALL it. Just let the "fix it" do the rest and whatever windows pop up just ignore them. Let the process complete until the "feedback" window from the "fix it" program comes up. Then you should see the desktop shortcuts are removed, if not: try double clicking on it as if you were to open the iTunes program and a message will come up saying "this program has been changed/removed..." then click the option to erase or delete. Then go to apple.com, download iTunes 10.5 (compatible for 64-bit windows) and it should work. IT WORKED FOR ME!! I hope it works for you. Let me know :)

  • My kernel had a panic attack...

    Hello,
    I recently sent my iBook G4 in to be serviced for a problem with the mouse button. (They replaced the top half of it..) I have been using my half new computer for about a month and now somthing went horribly wrong...
    I bought an Airport Express to get a wireless network. I tried to install it by inserting the cd that came with it... The computer froze while installing the airport driver. I forced shutdown. When I went to restart it, the gray wheel kept spinning and spinning until it eventually froze. I tried booting from the mac osx cd, then the real trouble started. I got a screen with a page of code and the words
    "Panic: We are hanging here..."
    At the bottom... I guess my computer had a panic attack..
    I started in single user mode and did a fsck in hopes of somthing, but it returned an error saying that it could not repair the volume... I then tried everything, resetting the PMU, imaging the install DVD to an external HD, running the hardware diagnostic (which froze), and then got angry and pouted for a few minutes...
    I am going to bring the computer into the genius bar tomorrow, but I really HATE these issues.... PLEASE, HELLPPPP MMMEEEEEEEEEE!!!

    KPs are usually associated with hardware problems. Here's some KP troubleshooting links.
    What's a "kernel panic"? (Mac OS X)
    http://docs.info.apple.com/article.html?artnum=106227
    Mac OS X Kernel Panic FAQ
    http://www.macmaps.com/kernelpanic.html
    Mac OS X Kernel Panic FAQ
    http://www.index-site.com/kernelpanic.html
    Resolving Kernel Panics
    http://www.thexlab.com/faqs/kernelpanics.html
    Cheers, Tom

  • HT1338 I have a macbook pro that i purchased late december of 2010, is it worth getting the new software or not? i really want it but i'm scared its gonna mess up my laptop!!

    Is it really worth upgrading?? By the sounds of the reviews, i'm not so sure but all the apps for the computer that i want, it requires me to have the new software... i don't know what to do?!!?!?! HELLPPPP!

    Welcome to Apple Communities
    http://www.apple.com/osx/whats-new/ Read the new Mountain Lion features and see if it's worth to upgrade. If you upgrade, do a backup before. Go to App Store, search it, download OS X and install

  • My applications!!!!!!

    i dont know why but my applications have question marks on them AND THEY WONT OPEN hellpppp meeeee

    mackenzieashleythompson wrote:
    maybe is there way way to get them back
    Did you search for your Applications folder using Spotlight?  Manually search?
    The only way to get your Applications folder back is to boot up from disc #1 that came with your computer and custom install the Applications folder.

  • How can i add subtitles to a movie I have already purchased in the itunes Store? I want to be able to add french subtitles to the already English movie.

    hellpppp meee i just want french subtitles so when i watch the movie with my french friend, she'll understand!! thanks

    Go to iTunes prefs>Playback - from the drop down menu select your language.
    You will see sub-titles if the media is programed with sub-titles. Not all content has sub-titles.
    MJ

  • HT201269 how do i get my phone out of recovery mode

    i was doing the latest upgrade and my phone is now locked inrecovery mode, i cant even get itunes to pull it up...hellpppp its an iphone 4s

    Read http://support.apple.com/kb/ht1808

  • Radeon hd 6370m driver problem

    Hello
    If you can help me to fix my notebook lenovo g570ah :
    - core i5 2450
    - hdd 500
    - 8gb ddr
    - hd 6730m
    I have a win 7 ultimate x64 version. After I instal hd6370 driver my browser firefox stop working (when I opening mozzila i can;t  type ,just not responding at any action than minimize and close) . Also whit ather browser i have problemes :
    - when i wach youtube image freezes
    - ather times i can't scrooling the page
    I mentioned that is not i flash problem, becouse after i uninstall hd6370 everything cames back to normal.
    What I supposed to do? HELLPPPP!
    Solved!
    Go to Solution.

    I fixed myself in the end. Just swich hd6370 manualy not automaticaly .

  • OS 10.7 Lion the slowest system ever - have I done something wrong?

    I recently upgraded to os 10.7 from the App store, along with all the various things that need upgrading as well (.e.g Microsoft Office, etc), on a 2.53 GHz 4GB/500GB Macbook Pro (1.5 years old).
    The systems is the SLOWEST and most ponderous I've used in 20 years!! It can take 10 minutes to start up  when opening a couple of programmes (Mail, Word, Excel), the Office programs crash incessantly, swtiching between applications is slow, starting up Paralles is GLACIAL, applications freeze all the time. I've still got over 100 GB free on the hard drive.
    Either I've got something set up terribly wrong (but 10.6 worked amazingly), or this is the worst system Apple has ever put out!! HELLPPPP!!!

    If you have more than ten or so files or folders on your Desktop, move them, temporarily at least, somewhere else in your home folder.
    Disconnect all wired peripherals except keyboard, mouse, and monitor, if applicable. Launch the usual set of applications you use when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Activity Monitor in the page that opens.
    Select the CPU tab.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Step 2
    Launch the Console application in the same way as above, and select “kernel.log” from the file list. Post the dozen or so most recent messages in the log — the text, please, not a screenshot.
    If there are runs of repeated messages, post only one example of each. Do not post many repetitions of the same message.

  • USING M BOX

    how do I get my mbox to work with garage band? Ive got my mic, mixer, and mbox interface. how should i hook everything up??? the only way i can get the interface working is through mono and it is horrible.. someone please HELP!!!

    but how do i actually hook it up, ive got my mic going to my interface and my interface via firwire to my computer. Do i have to change my drivers or somthing? pleaseee hellpppp!!

  • Auto install another app with the installation of AIR app

    Hi
    I am new to desktop application development. I am stuck on an issue.
    My air application uses another application installed on user machine to capture the screen shots. I want to bundle this third party application (screen capture software) installer with my AIR application so that When user will install air app this screen capture application will automatically install on user machine.
    My whole motive is to automatically install screen capture software on user machine with installation of AIR app without user notice. I dont know how can I accomplish it.
    Thanks

    Every time that i turn on windows and i want to open an app
    that use adobe air ask me for a new version,
    and i check all the installed software and adobe air dissapier from that list.
    Please HELLPPPP!!!
    thaks

Maybe you are looking for

  • PDF printing from BEx Web Query

    Hi Experts When I try to print (Print Version) a BEx Web query I only get the message "Error while generating PDF". Do I need to set any setting to get this feature to work properly? Kind regards Erik

  • Itunes store won't load\open

    So basically yeah, my itunes store won't open at all. I have no error messages, nothing. I can see its loading, then it stop and i just have a blank page. I have a iMac with Os X Lion 10.7.5 and iTunes 11.0.2. Thanks for your help!

  • How to set the extra component to horizontal scrollbar position

    How to set the component to position of horizontal scrollbar , that position contain two component horizontal scrollbar and any component (JButton , JLabel ) like that.. Ms-Word scrollbar , Like that bellow fig. <!--[if !mso]> <style> v\:* {behavior:

  • Issues updating itunes

    when i try to download itunes 10 it freezes at about 75% i have tried closing everything down / restarting pc but it will not get any further than 75% please help!!!!!

  • Installing CE for the second time doesn't work ?

    Hi Recently my CE 7.1SR3 expired and I have installed it successfully for the second time, but the node server0 is not running  (yellow colored) after installation and is showing starting apps forever. Any clues what's going wrong.. Can't I install t