Need help super badly

So my 20gb photo was working fine then all of a sudden it gave me thesad ipod. Then i tried everything possible to fix it and it didnt work. Then all of a sudden it kept asking for it to be plugged into a wall charger. So i plugged it in to one and it would then go the chargeing bar and freeze. is there ne way to fix this without having to basically buy a new ipod. PLZ HELP!!!.

There is a pretty comprehensive post written by another forum member (Mitch) which is about the sad iPod icon.
The Sad iPod icon.

Similar Messages

  • I need help super bad! I can't find the solution anywhere!

    I have a 3rd generation iPod with the scroll wheel and four buttons on top. Ok, so my iPod had a bad battery so I opened it up and changed out the battery. After connecting it to the computer, iTunes said there was a new update so I clicked ok. Then the last part of the update said for me to connect the iPod to an external source and it showed the firewire head and an arrow (not the AC adapter and wall plug icon on Apple site). But I didn't have an AC Adapter. So I went out to buy one four days later. So My iPod was idle for four days. After plugging the iPod into the AC Adapter, the stupid icon is still there. And I can't seem to get it to go away. Can you please help me?

    I dont know why, but their is no start your own thread link on the front page. So I don't know how to start my own question, so I'll ask it here.
    I hook my iPod up to a computer every single day in my photo class(which Im in right now)
    Im wondering if my ipod charge cycle will run out. I dont want to limit my iPod battery life by hooking it up to a computer to much. I know their are only a certain amount of charge cycles...Am i using one every single time i hook my ipod up to a computer even though my iPod is nearly full battery power?
    So yeah Im just concerned about my ipod battery cmpltely dying for hooking it up to a computer too much. Thanks in advance.

  • I need help really bad. im trying to sync music on my ipod, but a message comes up say " cannot synce  photoes in ipod because the folder pictures cannot  be found . what do i do ?

    i need help really bad. im trying to sync music on my ipod, but a message comes up say " cannot synce  photoes in ipod because the folder pictures cannot  be found . what do i do ?

    Try deleting the iPod Photos Cache folder. There may be more than one. For its location see:
    iTunes: Photo sync creates iPod Photo Cache folder
    Also, go to the Photos pane for the iPod in iTunes and make sure syncing photos is unchecked.

  • What is this 205 error thing all i want to do is make cartoons is that so much to ask for i need help really bad ):

    all i want to do is make cartoons with photoshop and other programs but i cant is that to hard to ask for  ??? ): i need help very very badly

    Errors 201 & 205 & 206 & 207 or several U43 errors
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Needed Help on BAdi ADDRESS_UPDATES

    Hi All,
    I need to work in ADDRESS_UPDATE BAdi. Could Pleaze any respond and provide some valuable inputs to complete following requirement.
    Validates Zip code and Transportation Zone in LZONE against Zcustom table. If not found Zip code in the Zcustom table. need to raise Error message and stop to save.
    Regards,
    K.Vinai
    Helpul answers will surely rewarded.

    Hi
    DEFINING THE BADI
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    Some useful URL
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    Now write a sample program to use this badi method..
    Look for “BBB” sample program.
    “AAA”
    data : wa_flights type sflight,
    it_flights type table of sflight.
    format color col_heading.
    write:/ 'Flight info of:', i_carrid, i_connid.
    format color col_normal.
    select * from sflight
    into corresponding fields of table it_flights
    where carrid = i_carrid
    and connid = i_connid.
    loop at it_flights into wa_flights.
    write:/ wa_flights-fldate,
    wa_flights-planetype,
    wa_flights-price currency wa_flights-currency,
    wa_flights-seatsmax,
    wa_flights-seatsocc.
    endloop.
    “BBB”
    *& Report ZBADI_TEST *
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli.
    Reward points for useful Answers
    Regards
    Anji

  • Need help extremely bad any help will be greatly appreciated.

    I have a video that was filmed in the dark and facing a car thats headlights were beaming straight at the camera I cant find a way to localize enough enhancement to the area directly next to the car that is facing the camera without also enhancing the headlights drowning out the detail im looking for immediatly next to the car. I also have been running into the problem of the video becoming very pixilated after applying effects while I replay the video after applying the effects.What do I do to solve these problems and if any further information is needed please ask. The video is from a cctv 240/320 resolution and filmed at 30fps Which raises another question that I will ask at a different time. Any and all help will be greatly appreciated thanks in advance.

    Welcome to the forum.
    First, I would adjust the added Effect>Levels, and then add the Effect>Highlight & Shadow. Be sure to first turn OFF the Automatic setting (checkbox) for Highlight & Shadow, and then adjust, as is necessary. It is a very useful Effect.
    Good luck,
    Hunt

  • Need help really badly, macbook pro, just stopped booting up.

    Okay. I just bought a brand new MacBook Pro on wednesday(July 12th) and it arrived today (Tuesday July 18th) I turned it on, installed updates to all the programs, then started trying out some of the programs. I decided to instll my copy of Photoshop 7 onto it, but whn I put the disk in nothing happened. I turned the computer off with the disk still in it, walked upstairs and then "Tried" to turn it on. It came on, the little apple gong went off and then after that, nothing happened. All I've been getting ever since has been a white screen and total silence. Nothing else. I've had this computer in my posession for approximately 2 hours. One of those hourse of which it was charging. I am seriously baffled by this and I've read through the trouble shooting section of the manual, tried everything it said to try and still I get nothing but a white screen. Someone help me please. I need this for school which is in a little over a month and I've spent over $3000 on this thing.
    help?

    Can you do a PRAM/NVRAM reset?
    Resetting PRAM/NVRAM To reset, use the appropriate keys (Command, Option, P and R) should be held immediately at startup. If you continue holding the keys, a second startup chime will occur, then a third, a fourth, and a fifth, etc, until you release the keys. The keys should be held until three startup chimes are heard. This runs contrary to Apple's advice, which suggests that only two chimes are necessary.
    This reason for this recommendation is that in cases where holding for two chimes does not resolve issues, holding for three chimes does. Specifically, at issue when a MacBook Pro's battery is not being charged by the system.

  • Need help with BADI..

    hi,
    in VA02 when i delete a sales item, i need to check something and if that validates to true, i dont want to allow the user to delete that item.
    i was able to trace up to a level where when user clicks on the minus icon in the materials window and confirms by clicking Yes, a BADI called BADI_SD_SALES_ADDON is called.
    but SAP fails to get a handle of it's class which is CL_EX_BADI_SD_SALES_ADDON. I am not sure how i implement my code inside this class!! I cannot implement BADI_SD_SALES_ADDON  as SAP does not allow me to do so.. what shall i do ?
    i think if i make SAP to get the handle of CL_EX_BADI_SD_SALES_ADDON then if i write my code inside this class as an implicit enhancement ?? I am not sure.
    any suggestions please ?
    thks

    Hello,
    See these:
    /people/thomas.weiss/blog/2006/01/24/what-the-new-enhancement-framework-is-for-150-its-basic-structure-and-elements-for-beginners
    The new Enhancement Framework Part 2 - What Else You Need to Know Before Building an Enhancement
    How To Define a New BAdI Within the Enhancement Framework - Part 3 of the Series
    How to implement a BAdI And How to Use a Filter - Part 4 of the Series on the New Enhancement Framework
    The last link shows step by step how to create a BADI implementation.
    Regards.

  • I need help extremly bad!!

    Ok, I have the iphone 3g ... I have to go against my ex-girlfriend in court and all the proof I have against her is in the form of text messages. Well this past weekend my phone just shut off and said connect to itunes. What does that mean? Is there anyway to get those texts? I need serious advice and help?!

    Have you been backing up your iPhone? If you backed up your iPhone after the text messages were sent to you they will be stored in iTunes. Doing a restore of the iPhone and then restoring from backup in iTunes will restore all your text messages.
    Have you tried restarting your iPhone to see if it will start up normally? Hold down the sleep and home button until the iPhone shuts off and then the white apple shows up again. Once the white apple shows up let go of all the buttons. If the restore logo comes up again connect to iTunes and do a restore. Once the restore is complete it will ask you if you want to restore from your backup. After you restore from backup, sync your iPhone to reinstall all music, videos, and apps.
    Call History, Settings, SMS, Email, camera roll, Safari bookmarks, any user data, is all backed up in iTunes if you sync regularly or do a manual backup. If you didn't sync after you received those text messages from your ex-girlfriend, email me and I can see what I can do about getting the text messages off of there for you.

  • Need help in BADI...full marks wud be given.

    Hi guys,
    i am implementing a badi for a transaction MIRO...i got the BADI which is AC_DOCUMENT ..but this is working fine,but want a badi for iline items..
    can anybody help me in finding the right badi for line items..

    Hi,
    YOu may use the BADIs:
    MB_DOCUMENT_BADI and MB_MIGO_BADI for ur req.
    Pls reward poins if useful.
    Regards,
    Renjith Michael.

  • NEED HELP REALY BAD!!!

    hi everyone!!!
    im creating an online rts game (like rome total war) and wanted to know if there are any online tutorials explaining how to create the game and how to put it on the internet. If anyone can help me out i would be very grateful. If possible could the tutorial be very detailed and explain what everything does and what the comand lines mean.
    This is what it will look like (but whole of europe) set in the ancient times.
    http://img175.imageshack.us/img175/5148/rtw63fq.png
    and everything will be 3d. even the map. If this helps out well im glad ive been of asistance. If anyone knows if there is a tutorial that explains it very well then please contact me straight away. The grapichs wont be as good as shown above but they will be close. There will be gold members which will pay �5 a month and will get bigger maps to battle on, more choice in nations to own, more units to train and more.
    I am great at modeling, creating the textures, creating the website and many more. The only thing im not sure about is the language, which if anyone could help me out with i would be very grateful.
    Thanks loads!!!

    Um, I don't think you are aware of how much you have bitten off in this project. Simply put, you will not be able to write that program if that is your first Java program. You need a lot more than a tutorial. You need Java classes. You need to spend years immersing yourself in the language before you could tackle something that big.
    Having said all of this, if you are still interested in trying, you can find tutorials for using Java at www.java.com.

  • HELP!!! New ibook user needs help really bad

    I just purchased a new ibook g3 or g4 off Ebay. I'm new to the mac world but I'm getting into graphic design and the mac is the way to go...anyway....I bought this mac off ebay and all that came with it was the computer and power cord. Now I'm having issues with it and to fix the issues I need the start-up disks or the systems restore disks which I don't have. Can I get those anywhere from Apple or am I S.O.L.? Thanks

    Hi mama392! And Welcome To Discussions!
    Tiger is available for purchase at The Apple Store (U.S.).
    Panther, is no longer available directly from the Apple Online Store, as Tiger 10.4.x is the most up to date OS.
    A Full Retail Version, of the Panther Install CDs, or a Full Retail Version of the Tiger Install DVD, can be purchased rather inexpensively, at some online Apple retailers, Amazon, eBay, AppleRescue, etc.
    Be sure not to purchase grey, upgrade or machine specific CDs or DVDs.
    Panther is only on CDs, not DVDs.
    More info here Tip: Using OS X Install CDs/DVDs On Multiple Macs.
    Once Panther 10.3.x is installed, you can use the 10.3.9 Combo Update, to upgrade to the final version.
    If your Mac meets the System Requirements for Tiger, you could also consider installing that.
    And then use the 10.4.7 Combo Update.
    Tiger System Requirements
    Additionally,
    "Tiger ships on a DVD, but if your Mac doesn’t have a built-in DVD-ROM player, you’ll need CD media. When you buy Mac OS X Tiger, you qualify to purchase Tiger CDs for only $9.95."
    Download The order Form Here. Media Exchange Program
    Shop Carefully, Examine All Documention, And Good Luck!
    ali b

  • I need help really bad

    Ok, here's my problem:
    I had all my songs on my ipod.
    Then when i went to update my songs, all of the songs got deleted and so did the playlists.
    Now when I try to put the songs back onto my ipod, it says "Songs on the iPod Bryan cannot be updated because all of the playlists for updating no longer exist".
    If someone could help me, it would be very appreciated.
    Thanks
    Bryan
    compaq   Windows XP   laptop

    Schuch16,
    Welcome to Apple Discussions
    Do you still have the songs in your iTunes Library? You might want to look at Knowledge Base Document #60944.
    Jon

  • Does n e 1 read these things?????? I need help reeeelly bad

    Before my music on itunes kept getting all grayed out, so i got some help and turned on manually somthing, but now my ipod always says do not disconect! also, I just bought a song and it won't appear on my ipod, just my library. can n e 1 help? I have to leave on a cruise 2morrow and i waus hoping to bring my ipod with me

    Posting a "me too" response to someone else's question, as you did with your first post, isn't the best way to get help with your problem. You really should start a new topic when you have a question. And we're all just your fellow users participating as we have time and knowledge, so sometimes it may take a while for someone to respond. No one here gets paid to help - we all have other tasks and lives to attend to - so have patience and most likely you'll get a reply fairly quickly.
    Anyway, if you have the iPod options set to manage your playlist manually, you'll get the "do not disconnect" until you eject the iPod in iTunes. You'll also have to drag the song to the iPod's icon in iTunes to get it to copy. So try dragging the track to the iPod (in the iTunes Source list) and then eject the iPod. That should do it.

  • NEED HELP SOOO BADLY

    hi there,
    i am trying to write a servlet which supports many connections for mobiles, each connection to a mobile will read and write to the mobile
    the problem is when i try to compile it i get problems the error message is "variable r might not have been initialized"
    here is the code
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class threads extends HttpServlet implements Runnable{
    Thread us;
    HttpServletRequest req;
    HttpServletResponse res;
    InputStream in;
    PrintWriter out;
    public threads(){  System.out.println("fff"); }
    public void run(){ 
    System.out.println("goooogle.com");
    try{
    HttpServletRequest r;
    HttpServletResponse q;
    InputStream in = r.getInputStream();
    catch(IOException e){}
    public void doPost(HttpServletRequest req,HttpServletResponse res) throws IOException,ServletException{
    int i=0;
    System.out.println("here");
    us = new Thread(this);
    us.start();
    any help will be appreciated regards

    but i want to make a servlet that for example acts like a relay point between two phones so two phones will talk to each other, i already have two phones talking to eachother but i want to allow another two or more pairs to connect and talk in twos wothput interfering with other connections, ive been at this for over a month all night i cant find any info on this online some one plz heeeeeelp meeeeeee!!!!!!

Maybe you are looking for

  • I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymor

    I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymore. My computer doesn't want to read it anymore. I want to mention that I also tried on some other computers and still the problems continues. How can

  • Scan via Preview no longer working after Lion Upgrade

    After upgrading to Lion, I can no longer use Preview to scan a document from my Kodak ESP9.  I have a range of issues, but the most common is that after telling preview to look for networked scanners, and then selecting the Kodak, it open a box that

  • Bind variable & LIKE :1 - Performance issue

    I'm using ODP.NET version 10.2 and I'm facing a performance problem with LIKE key word in statements. I'm doing the following : OracleConnection conn = new OracleConnection(); conn.ConnectionString = connectionString; string strQuery; OracleCommand c

  • IPhone will not open even after reinstallation

    After importing some photo images from a CD and beginning to edit (red eyes) a few of them, *the iPhone hung up* with the spinning ball. So, I tried to close the application and even shut down the iMac without success. Eventually, I just shut down th

  • Airport Extreme and a Server

    How do you configure an AEBS for wireless connection with a server that distributes IP addresses? I have a Xserve that distributes Ip's via DHCP and connnects to the internet. I have a switch (8 port) that connects to the server and the airport conne