TS1382 I need help fast

My Ipod nano 7th generalaton shut off on me today and so now I have tryed everything and nothing seems to work. Plus I got it from Walmart. Please Help me figure this out.
Help???????????????????????????????????????????????????

hookedonlerman wrote:
but will that replace the use of using up data? (wifi & 3G)
It sounds as if you don't really understand what "using data" means. Data is not something different from WiFi and 3G, it's something sent over WiFi and 3G. Think of data as water and WiFi and 3G as types of pipes. Some apps need to send and receive data to work. That data can be sent or received in different ways. It can be sent over WiFi or 3G. Both official iPhone carriers in the U.S. have metered data plans. It's sounds as if you're talking about AT&T's 200 mb data plan. WiFi is not provided by your cellular carrier. You can have WiFi from your Internet Service Provider at home or you can access free WiFi at places like McDonalds or Starbucks or paid WiFi at places like airports.
If you have WiFi turned on on your phone and WiFi is available, the phone will default to WiFi. WiFi is faster than 3G and generally not metered, and is sometimes even free. If you are out of range of WiFi, you would be using 3G to send and receive your data. With a metered plan, you need to keep an eye on how much you are using because if you go over your allowance, you will be charged additional fees.

Similar Messages

  • I NEED HELP FAST!!! how can i activate wi-fi if i want to use that for facebook apps instead of wasting my data?

    i want the 200 mb plan for my iphone and wanted to know if instead of using safari i can use apps such as facebook or tumblr without using up my data. i got the asnwer that i can avoid that by using wi-fi, but how does that whole thing work?
    sorry i am a bit new at this, and i need help fast!
    THANK YOU!

    hookedonlerman wrote:
    but will that replace the use of using up data? (wifi & 3G)
    It sounds as if you don't really understand what "using data" means. Data is not something different from WiFi and 3G, it's something sent over WiFi and 3G. Think of data as water and WiFi and 3G as types of pipes. Some apps need to send and receive data to work. That data can be sent or received in different ways. It can be sent over WiFi or 3G. Both official iPhone carriers in the U.S. have metered data plans. It's sounds as if you're talking about AT&T's 200 mb data plan. WiFi is not provided by your cellular carrier. You can have WiFi from your Internet Service Provider at home or you can access free WiFi at places like McDonalds or Starbucks or paid WiFi at places like airports.
    If you have WiFi turned on on your phone and WiFi is available, the phone will default to WiFi. WiFi is faster than 3G and generally not metered, and is sometimes even free. If you are out of range of WiFi, you would be using 3G to send and receive your data. With a metered plan, you need to keep an eye on how much you are using because if you go over your allowance, you will be charged additional fees.

  • My daughter has spitefully changed my password and has refused to tell me. I have so much medical information that I can not lose. Is there anyway to get around this problem. Please I need Help fast.

    My daughter has spitefully changed my password and has refused to tell me. I have so much medical information that I can not lose. Is there anyway to get around this problem. Please I need Help fast.

    Connect the iPod to your syncing computer and restore it via iTunes.  However, if iTunes asks for the unknown passcode you need to place the iPod in recovery mode and then restore the iPod from backup.  For recovey mode see:
    iPhone and iPod touch: Unable to update or restore
    "If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone and iPod touch software."
    Above is from:
    http://support.apple.com/kb/ht1212

  • My little brother messed up with my iPod touch 4th Gen by entering the wrong password , now all data is beeing erased what should I do.The iPod is just showing the Apple Logo and some buffering icon below it.Need help fast!I'm really worried!

    I really need help this has happend 5 hours ago and the ipod os still showing the apple logo and the buffering icon below it!
    It re booted several times till now.
    Need help fast!

    - I suspect that he went to Settings>General>Reset>Erase all content and settings.  For 1G or 2G iPod that can take hours and it will likely stall out if not connected to a charging source.
    Try the following:
    - A reset.
    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.
    - The connect to computer and try to restore via iTunes.
    - Id something is still showing onthe screen, disconnect from computer/charging source and let the battery fully drain. After charging for an hour, Try the reset and restore.
    - If you can turn the iPod off, se if placing the iPod in recovery mode and then restore. For recovey mode:
    iPhone and iPod touch: Unable to update or restore

  • Need Help Fast Please

    Why does this code not do what I want to happen?
    I have a 7 non functional buttons above the buttons for the days in the month and I would like to be able to layout the buttons starting on the day that the month begins and ending where it ends.
    Like in the microsoft windows calander.
    Any ideas as to how I'd do this?
    I need help fast. Please.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.util.*;
    public class MyDairy extends JFrame
         //Initilises Global Variables
         myHandler H = new myHandler();
         monthHandler J = new monthHandler();
         openHandler O = new openHandler();
         String monthName;
         JComboBox months;
         static String[] daysOfWeek = {"Sun", "Mon", "Tue", "Wed", "Thur", "Fri", "Sat"};
         static int[] daysInMonth = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; 
         JFileChooser box;
         public MyDairy()
              //Initilises the JComponents
              JMenuBar menuBar;
               JMenu menu;
              JMenuItem menuOpen;
              JMenuItem menuSave;
              JMenuItem menuExit;
              JButton dayName[] = new JButton[7];
              JButton day[] = new JButton[36];
              JPanel b;
              JPanel a;
              Calendar today = Calendar.getInstance();
              Calendar startOfMonth = Calendar.getInstance();
              startOfMonth.set(Calendar.DAY_OF_MONTH,1);
              startOfMonth.set(Calendar.DAY_OF_WEEK,7);
              System.out.print(startOfMonth);
              //Sets up the Layout
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container c = getContentPane();   
              c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));
              a = new JPanel();   
              a.setLayout(new GridLayout(0, 7));
              b = new JPanel();   
              b.setLayout(new GridLayout(5, 7));
              //Sets up and adds the menu bar   
              menuBar = new JMenuBar();   
              setJMenuBar(menuBar);  
              //Adds the File menu
              menu = new JMenu("File");   
              menuBar.add(menu);
              //Adds the menu items      
              menuOpen = new JMenuItem("Open");     
              menu.add(menuOpen);
              menuSave = new JMenuItem("Save");     
              menu.add(menuSave);
              menuExit = new JMenuItem("Exit");     
              menu.add(menuExit);
              //Produses the ComboBox
              String[] name={"January", "Feburary", "March", "April", "May", "June", "July", "Augest", "September", "October", "November", "December"};
              months = new JComboBox(name);
              int m = today.get(Calendar.MONTH);
              int d2 = today.get(Calendar.DAY_OF_WEEK);
              System.out.print(d2);
              months.setSelectedIndex(m);
              months.addActionListener(J);
              c.add(months);
              c.add(Box.createVerticalStrut(10));
              switch (months.getSelectedIndex())         
                       case 0: for (int i=1; i<36; i++)                          {                   
                         if(i<4)                
                            day[i] = new JButton();                  
                            day.setEnabled(false);               }               
    int k = 1;                
    day[i] = new JButton(" "+k);                b.add(day[i]);                
    day[i].addActionListener(H);               k++;               
    }break;          
    //other case statement up to 11 are simaliar          }                     
    c.add(a);
              //Produces an Array of Buttons
              for (int i=1; i<36; i++)
                   day[i] = new JButton(" "+i);
                   b.add(day[i]);      
                   day[i].addActionListener(H);               
              c.add(b);
              updateNameField();
              setSize(400,400);
              show();
         }//constructor
         private void updateNameField()
              monthName = (String) months.getSelectedItem();
         class myHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   new Text_Area(monthName);
         class openHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   File f1 = New File ("2003.dat");
                   simpleSerializer S = new simpleSerializer(f1);
                   MyDairy = S.readObjectFromFile();
         class monthHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   updateNameField();
         public static void main(String[] args)
              new MyDairy();

    Container c = getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));don't code like above try something like...
    Box box=Box.createVerticalBox();
    c.add(box);
    ----so on
    Hope this will help...

  • Need help fast with a buying decision - Leadtek 6800 GT

    Hi there, I have the opportunity to swap my Club 3D 6800 GT for a Leadtek 6800 GT. The reasons I would do this would be the cooling and the games bundle.
    I just wanted to know if anyone knows how the cooling is on this particular card and if it would be better than the reference design?
    My other concern is that it has a huge copper heatsink on the back of the card, this would sit directly under the CPU HSF. There really would only be a few millimeters between them and due to the position of the socket on this board, the heat sink fins go up vertically. Would the heat from the card's copper heat sink rise up into the CPU HSF grooves and raise the temperature of the CPU?
    Thanks for any help  
    I kind of need help fast as someone said they were gonna buy my other card of ebay today, there's still time to stop them if this is gonna be a bad idea

    i would definately take the leadtek one over the club3d card, the cards themselves are all based on refrence designs just different cooling solutions and bundles
    and the cooler on the leadtek is a lot better, and it isnt more noisy then the club3d one at all
    it has better cooling, and they seem to be the ones which are the most available, and they overclock very well due to the better cooling

  • Need Help Fast! Page is dispalying twice in quiz

    I have created a quiz using tips from another post in this
    forum. I insterted a regular slide with a continue button before
    the quiz questions. I insterted another regular slide at the end of
    the questions with a re-take button that points to that first
    slide. This part is working great. When I take the published quiz,
    I click the continue button, and instead of continuing, the slide
    redisplays. I click the button again, and it moves forward like
    it's supposed to. Any advice?
    I'm supposed to have these posted in our LMS today for
    testing, so I need help fast!!! Thanks!!

    What you're seeing is likely the result of a MS patch for IE
    in response
    to the Eolas patent suit.
    MS recently updated IE so any content shown in a page using
    the Embed,
    Object, or Script tags will need to be 'activated' before
    they can be
    clicked (or otherwise 'interacted with').
    Your home computer probably hasn't had the latest security
    rollup
    installed, is why you're not seeing the issue on that
    machine.
    There is a work around, many site mention it. This may be a
    good place
    to start:
    http://www.macromedia.com/devnet/activecontent/articles/devletter.html
    Erik
    dukekelly wrote:
    > Why is it that as soon as you ask for help, you find the
    answer?
    >
    > This isn't a captivate problem at all. It's an IE
    problem. Because the button
    > is a control in Flash, our systems where I work are
    requiring us to click the
    > screen to activate the controls. THEN you have to click
    the button. When I play
    > the movie on my home computer, this phenomenon isn't
    happening. Now, how am I
    > supposed to deal with that??? ASRRGGGHH!!!
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.macromedia.com/support/forums/team_macromedia/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/groups?q=macromedia.authorware

  • I am trying to export a video as an flv but the list of possible formats is much shorter than it used to be. I cannot find any way to make an FLV using the newest version of Premiere Pro. Need help fast! I am on a Mac

    I am trying to export a video as an flv but the list of possible formats is much shorter than it used to be. I cannot find any way to make an FLV using the newest version of Premiere Pro. Need help fast! I am on a Mac

    Support for exporting to FLV and F4V has been removed. To learn more, please consult this blog post: removal of FLV and F4V export features from Adobe Media Encoder, After Effects, and Premiere Pro | After Effects regio…

  • My screen is completely white, i've tried holding lock and home buttons as seen on you tube something called 'white screen of death' its goes black (think it switches off) then back to the white screen need help fast please!

    my screen is completely white, i've tried holding lock and home buttons as seen on you tube something called 'white screen of death' its goes black (think it switches off) then back to the white screen need help fast please!

    If you have not done a factory reset on the device, I recommend doing a complete  factory reset.  
    Factory Reset  - Warning this will reset device back to original factory settings.
    This method will not erase any MDN/MIN information
    Turn off the phone 
    Press Power + Volume Up/Down at the same time and hold until display will show a triage android screen 
    Display will show: 
    Reboot system Now 
    Apply sdcard:update.zip 
    Wipe Data/Factory Reset 
    Wipe Cache Partition
    Use VOL Down key to scroll down to "Wipe Data/Factory Reset", press home icon to select option and wipe device. 
    Display shows "All user data will be wiped out", press VOLUME Up to continue or VOLUME Down to exit. 
    Press Volume Up 
    Press Home to select "Reset System Now" - device will reboot
    If the problem persist I recommend having a store technician take a look at the device.
    Copy and paste the link below into your browser's address bar for the store locator.  
    http://www.verizonwireless.com/b2c/storelocator/index.jsp

  • Premiere Pro CC updated  - crashes almost immediately on my mac OS X Yosemite 10.10.3. Crashes at startup, crashes with media import, crashes when creating a sequence. NEED HELP FAST I have tried many troubleshooting solutions I found online nothing has

    Premiere Pro CC updated  - crashes almost immediately on my mac OS X Yosemite 10.10.3. Crashes at startup, crashes with media import, crashes when creating a sequence. NEED HELP FAST> I have tried many troubleshooting solutions I found online nothing has worked.

    Hi,
    Sorry to hear about the experience. Please provide your computer configuration details.
    Memory, Processor, Graphics card, Exact version of Premiere Pro, Error message that you are get. If you can post screenshots of the error report that would be helpful.
    Thanks,
    Rameez

  • Any hope, i need help fast

    ok just this morning i want to update my iphone from OS2 to OS3 and during that time i went to watch tv, but when i came back this happens
    http://i391.photobucket.com/albums/oo358/absolutezeromax/IMG_0057.png
    it tells me to connect to itunes, but i done it many times and ditunes just keep saying
    "you iphone have error
    the device is not regonized, unable to prompt service" or something like that, at least i translate back to enlish (i am brazilian)
    so i checked out the recovery tut but it wont work (this should reverse back to OS2)
    i tried to remove the batteries, sim card still wont work
    i tried to reinstall itunes thinking its the programs problem it still wont work
    i restarted both the iphone and the computer dozens of times
    i use the diagnosis on itunes and its working fine
    so i need help fast plzzzzzzzzzzz!!!!

    yea i did follow a tut
    1.turn off phone
    2.hold home button
    3.connect to itunes
    4.keep holding
    then it went into recovery mode but after that it just become that screen again

  • HELP PLZ LOOK IPOD WONT SHUT DOWN! NEED HELP FAST!

    I HAVE A IPOD TOUCH, IT WON'T SHUT DOWN WHAT SHALL I DO? HELP QUICK PLZ! NEED HELP FAST

    - Try a reet:
    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.
    - Next connect to computer and restore if it shows in iTunes.
    - If still one, then lett the battery fully drain.  After charging fro an hour try the above again.

  • Problems with exporting. Need help fast

    So I recorded some video game footage (Battlefield 4) and when I look at the raw file, it says it's 1920x1080. I edited it and finished it and even if I look in info it says that it's 1920x1080.
    But when I try to export the video it says that the source file is 1280x1080
    So when I export it, it is in REALLY bad quality and I usually upload high quality videos! What do I do? I need help, fast! I have Adobe Premiere Pro CS6.
    I have a i7 3770k CPU so I don't think that is an issue. 8GB of ram aswell.

    Quickest way:
    Get Started with Premiere Pro
    New to Premiere Pro? Get started with your first project — editing a video. In less than an hour, you'll learn to edit together different types of media to tell a video story.  

  • My ipad device does not come up on itunes, need help fast:/, my ipad device does not come up on itunes, need help fast:/

    my ipad device does not come up on itunes, need help fast:/, my ipad device does not come up on itunes, need help fast:/

    Hi, Nancy.  
    Thank you for visiting Apple Support Communities. 
    Here are the steps that I would recommend going through when experiencing an error that begins with 0xE. 
    iOS: Unknown error containing '0xE' when connecting to a Windows PC
    http://support.apple.com/kb/ts3221
    Cheers,
    Jason H.

  • HELP! Ipod 4th gen. Not working! Need help fast!

    My ipod 4th gen, died, and when I went to charge it. It showed the screen where the usb cord has an arrow above it pointing to the itunes symbol. I plugged in my ipod to my laptop, went on itunes, and there was no device recognized. And no pop up thing about the device, or restoring the device. I looked up sooo many things and nothing has helped me. I really need help, and fast! REMINDER: Im only 14, and dont have the money to take in my ipod to get it fixed, or to buy a new device. I would really appreciate the help if you know whats happening and how to fix it!

    You need to restore the iPod via iTunes. Try the following to get iTunes to see the iPod so you can restore the iPod
    iTunes: Restoring iOS software
    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

Maybe you are looking for

  • Help me if you can

    my c d wont do anything HL-DT-ST DVDRW  GS23N:   Firmware Revision:          SB03   Interconnect:          ATAPI   Burn Support:          Yes (Apple Shipping Drive)   Cache:          2048 KB   Reads DVD:          Yes   CD-Write:          -R, -RW   DV

  • Posting Cash Payments and Clearing Invoices

    Hi everybody, Can anybody suggest a transaction to post payments (money) and clear FI invoices. I am looking for a transaction where the user can pull an invoice by doing a search by invoice number, or by PO number, and to post a payment against the

  • Images with same name in different folders being swapped

    I've been out at a printers freelancing and using CS6 for the first time. I've a 64 page document with a large number of images (100+) that have been given various treatments and held in folders named to identify them. originals: sweden.jpg, germany.

  • How To Simulate the Variant Functionality of se11.

    Hi all,    In Module Pool Program, in the Subscreen I have Kept the select-options for 4 zfields(custom fields). and there is Save Button in the Main Screen that is Calling the Subscreen Below.   My Requirement now is ,When SAVE is Done , I have to s

  • Assets report not working

    I'm trying to run a report wher i look at Periodic,Quarter to Date,Year to Date. Now when I run it for revenues and expenses it works. Gives me different number for each column. For Assets not so lucky, same numbers across. Any ideas? thx.