New Games on Nano

Can i get any of the new games off of iTunes and play them on my first generation nano?
Nano   Windows XP  

No, sorry, but they are only for the ipod video 5th gen.

Similar Messages

  • No Games For Nano

    Is it just me or is apple stupid for not making there great new line of iPod ready games for the nano too. Seems kind of stupid to me considering the only slim problem would be small screen size??

    no, apple is NOT stupid for the games not working on the nano, because it CANT work on the nano. they did not CHOOSE to exclude you nano users, nano users CHOSE the nano over the video capable version. this is like complaining that its not fair that your DVD's dont work in your VCR. it just cant do it. it doesnt have the ability. and no software upgrade is going to help. it's the components inside your ipod that give it the ability to play videos and the games. the games you already have are primitive, with little graphics. your ONLY hope of getting new games on the nano, will be games similar to the ones you have now, like old school space invaders or something like that with little to no graphic detail. and in that case, send a suggestion to apple (which you can EASILY do) and wait.
    Dell   Windows XP Pro  

  • How can I transfer my old dragonvale island into my new game center account?

    I restored my ipod, but now I had to make a new game center account. Since Dragonvale used my old GC account, it forgot my island and generated a new one. I dont wanna have to start over again. Help me! (dont say to start over)

    You said you restored your iPod. Did you restore from backup? If yu did then yur game progress and Game Center stuff should have beeb restored.

  • I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I'm keeping the app, i just need the $19.00 back.

  • Puzzle Game and new Game Problem

    Hello Java Programmers,
    Once again I have encountered a problem with my ongoing puzzle game. I have completed it all. Now I want my user to be able to start a new game in after they win. I tried repaint and update method with JFrame but it deosn't reshuffle the buttons. How can I do that. The code geos below.
    [/b]
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.JOptionPane;
    public class PuzzleGame{
       String[] btn_Labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"," "};
       String[] labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"};
       private final int ONE = 1, TWO = 2, THREE = 3, FIVE = 5;
       private boolean WIN_STATE = false; 
       private JButton b[];
       public String clicked_btn_label = "";
       //Constructor method.
       public PuzzleGame(){
          showSplashScreen();
          initGame();
       public static void main(String args[]){
          PuzzleGame game = new PuzzleGame();
       //When a new Game started labels of buttons are shuffled using this method.
       public void shuffleNumbers(){
          String temp = null;   
          for(int j=0; j<16; j++){
          int k = (int)(Math.random()*16);
          temp = btn_Labels[j];
          btn_Labels[j] = btn_Labels[k];
          btn_Labels[k] = temp;           
       //Game initialization method.
       public void initGame(){
          b = new JButton[16];
          JPanel p = new JPanel();
          JFrame frame = new JFrame();
          shuffleNumbers();
          for(int i=0; i<16; i++){
             b[i] = new JButton();
             b.setText(btn_Labels[i]);
    b[i].setActionCommand(""+(i+1));
    for(int i=0; i<16; i++){
    b[i].addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent e){
    clicked_btn_label =(String)e.getActionCommand();
    doSwapping();
    checkWin();
    p.add(b[i]);
    p.setLayout(new GridLayout(4,4));
    frame.getContentPane().add(p);
    frame.addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e){
    System.exit(0);
    Dimension dm = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (dm.width - 230)/2;
    int y = (dm.height - 240)/2;
    frame.setBounds(x,y,320,240);
    frame.setSize(340,240);
    frame.setVisible(true);
    //This method swaps the clicked button with the empty button if it doesn't violate rule.
    public void doSwapping(){
    int num = Integer.parseInt(clicked_btn_label);
    String temp;
    if( (num + ONE <= 16) && b[num].getText() == " " && num % 4 != 0){
    temp = b[num].getText();
    b[num].setText(b[num-ONE].getText());
    b[num-ONE].setText(temp);
    else if((num - TWO >= 0) && b[num-TWO].getText() == " " && ((num - ONE) % 4 != 0)){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-TWO].getText());
    b[num-TWO].setText(temp);
    else if( (num + THREE < 16) && b[num+THREE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num+THREE].getText());
    b[num+THREE].setText(temp);
    else if( (num - FIVE >= 0) && b[num-FIVE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-FIVE].getText());
    b[num-FIVE].setText(temp);
    // else{}
    public void checkWin(){
    WIN_STATE = true;
    for(int i=0; i<15; i++){
    if( b[i].getText() != labels[i])
    WIN_STATE = false;
    if(WIN_STATE == true){
    JOptionPane.showMessageDialog(null,"Congratulations You Have won the Game!","You Win",JOptionPane.INFORMATION_MESSAGE);
         initGame();
    public void showSplashScreen(){
    JWindow w = new JWindow();
    JPanel p = (JPanel)w.getContentPane();
    JLabel l = new JLabel(new ImageIcon("splash.jpg"));
    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (d.width - 230)/2;
    int y = (d.height - 240)/2;
    p.add(l);
    w.setBounds(x,y,320,240);
    w.setVisible(true);
    try{
    Thread.sleep(10000);
    catch(Exception e){
    w.setVisible(false);
    [/b]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Sorry for violation. I would like to add a menubar to the application containing a single menu button for new game. adding a menubar is simple but how can i reshuffle the buttons using methods like update etc. or any other way.

  • When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    Carefully follow steps 1-9 outlined by wjosten in this post: https://discussions.apple.com/message/13356770#13356770.  This will not, however, avoid wiping any non-purchased media from your phone (ripped CDs, etc.) as this is only synced one way: from your computer to your phone.  You will have to either rebuild your iTunes library with this content and sync again to restore it to your phone, or purchase 3rd party software to copy it from your phone to iTunes prior to syncing (such as Touch Copy).

  • Itunes wont let me sync new games

    When i try to sync the games I just bought(song summoner) i get a message saying that if I do it will replace all games on my ipod with the games in my library, but the problem is my ipod video came with several simple games(Brick, Parachute, Music Guiz, and solitaire) preloaded on it, will it delete these games if I ok the sync or will they be ok, and if they will get deleted is there anyway get my new games onto my ipod without losing the preloaded ones?
    Thanks for your help!

    If you mean the built in games( and I think you do), they can't be deleted. If you mean games that someone else put on your iPod before you bought it, they would be deleted.

  • How do I create a new game center id for my own games

    My kids have many games on my phone (4s) how do I create a new Game center id and load some of the same games as my own?

    You can change the account by tapping or clicking Account and then signing out of the current account and into the new one(Apple ID).

  • Can I update my older ipod touch to play new games that require ios 4.3?

    Can I update my older ipod touch to play new games that require ios 4.3?  After I purchased games for my son's ipod, they would not upload due to ios.  How can I update that without purchasing a new touch?

    iOS 4.3 requires a third generation or newer iPod touch; you don't need to buy a brand new device in any case.
    (74008)

  • Hi all, can someone please help. I'm trying to transfer Game Center data (games, achievements/scores and friends) to a new Game Center account. Thank you in advance :)

    Trying to transfer all Game Center data to a new Game Center account. Thank you in advance. Much appreciated.

    I am having the same problem
    after the update to 5.0.1
    I mean updating shouldn't become a task that everyone will dread

  • Looking for a particular upcoming new game

    There is a new game coming in the near end of October called Zettai Hero Project: Unlosing Ranger vs. Darkdeath Evilman (Yes. That's the title.). But the game itself is not on the website yet for preorder.
    Here is the cover:

    Deathdeath.. Evilman?
    The unlosing ranger I can see as a translation bo-bo.
    But Darkdeath Evilman?!
    Is this the result of some game designers severe writer's block?
    I'm sure that the GAME is nice, tho
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • IPOD 5th generation will not upload new games

    I purchased a new game and it will not upload it on my IPOD. It says it needs the 1.2 version which it has.
    I installed Itunes 7 and when the ipod is sync it says it's syncing software is version 1.2. I restored my IPOD and it still did not eliminate the problem.
    I can not find a way to contact support. It keeps looping me to articles and will not give me an email address or phone number.
    Someone please help.
    PC   Windows XP   none

    I finally got the answer in the Itunes discussion section.
    You must "authorize" your PC to use games / music purchased from the Store.
    Click on the "Store icon"
    Go in "Store" -> "Authorize PC" It will authorize your IPOD to be able to load games. Otherwise, double-clic the image of the game between the Library column and the game description: a pop-up window will be prompted and you can authorize your pc.

  • How can I start a new game on an App that is stored in iCloud?

    I have a game stored in iCloud - that is my only option.  I want to start it as a new game on a different device and I can't.  I tried creating a new account and that didn't work.  What do I need to do?

    How that that game maintain/record status?
    What do you mean by stored in iCloud?
    Do you have to log into that game?
    Have you tried contacting the developer?

  • 30-gig video iPod and new games

    I downloaded one of the new games (Mahjong) to my WinXP iTunes (v.7.0) w/o problem, but I can't load it to my iPod (v.1.2) without getting the "can't run it on this computer" error message. {Yes, I know we can't run these games w/i iTunes on the computer .. that's not the issue!} I tried changing my iPod settings (w/i iTunes) to sync. all games .. and Mahjong was listed .. and then I tried "dragging" the game to my connected iPod .. no luck.
    Any ideas?
    DSeagrave: Correcton .. the error message says I'm not authorized to play the game on this computer.
    Message was edited by: DSeagrave

    yeop, thats video
    well, perhaps sign in to iTunes Music store with the user ID that u used to buy the game... its a long shot, but it could be some weird bug.
    you are using the same computer that you used to purchase the game correct?
    hmm.. thats a long shot.. but it's worth a go...
    aside from that i would suggest ringing apple, or going into an Apple store..
    or, "restore" your iPod software? reinstalling iTunes..
    they are rather nasty options... anyone else got suggestions?

  • HT4314 I have tried to log into clash of clans on my iPad and it just keeps going to a new game rather than the one saved on my iPhone. I have been using the game centre and same user name and password ?

    I have tried to log into clash of clans on my iPad and it just keeps going to a new game rather than the one saved on my iPhone. I have been using the game centre and same user name and password ?

    I have the same problem.. EXACTLY. .  When phoning Apple Support they had trouble understanding my problem and couldnt find any type of solution. No one seems to take responsibility for GameCenter issues. The assistant escalated the problem but no one could find an answer. .
    The only idea was to set up a new apple id, hence a new GameCenter account. . But that would loose all the itunes data. Anyone got ideas ?

Maybe you are looking for

  • Multi-mapping 1:n - 1:1

    Hi, We are using multi-mapping in a file-to-file interface. When we have 1:n everything is ok, but when we have 1:1 we have this error: Success The message status set to DLNG. Error Unable to find channel ID Error Delivery of the message to the appli

  • How do I convert a Variant of type=String to G data? (LV 5.1.1)

    I've tried to return a string in the Variant return of a VB function in a DLL. (I want to do this so that I can retain the interface and thus binary compatibility in the DLL.) When I use the DLL function in LabVIEW 5.1.1 I get an error in the call li

  • Secondary correction with a vignette softness around

    I've color corrected in secondary room using a vignette. I put some feather around the vignette to blend more smoothly between inside and outside of the vignette. But when I render it and export it in FCP, the final output has the choppy gradation in

  • Best practices configuring anti virus in oracle application server machine

    Hi all ! i need to install mcafee 8.7patch3 antivirus software in the server that runs Oracle Application Server 10g R1 (9.0.4) Server is an hp proliant dl 580 g2 running windows 2003 enterprise edition sp2. I need to hear from your experience , wich

  • TS3694 iTunes not recognizing newly restored iPhone! Any help?

    Hi there, My iPod is notonnecting to itunes when I plug it in. > I had just restored it and now when I plug it into computer the "connected" comes up on the iPod screen but it doesn't show up on itunes or desktop as though its not plugged in! Any hel