New Games Unauthorized

FIXED! DON'T REPLY

Huh? What new games? What update? What firmware are you on anyway?
If you find my post helpful please click the green star on the left under the avatar. Thanks.

Similar Messages

  • 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 ?

  • I am getting an error when trying to download  the new Game of Thrones shows. The error is err = -61 You do not have the privilege to make changes. (err = -61) you do not have the privilege  to make changes. I have not had this problem before

    I am getting an error when trying to download  the new Game of Thrones shows. The error is err = -61 You do not have the privilege to make changes. (err = -61) you do not have the privilege  to make changes. I have not had this problem before

    Solution:
    Open Disk Utility.
    Select your external hard disk and run a “verify” on it. After a few minutes (depending on the size of your drive), you should be good to go. You don’t need to run a “repair” on it... (at least I didn’t have to). See photo for reference.
    This should fix the permissions issue, because on my Mac running Mountain Lion I was unable to edit the permissions in the get info dialog window even after "unlocking" the drive.

Maybe you are looking for

  • IPad 2 WiFi Range Issues (but not issues with connectivity when in range)

    Okay. I hate to start a new thread when there are bunches of threads on the iPad 2 having WiFi problems (particularly with 5Ghz networks and also related to 4.3). Nonetheless, I'm not seeing anyone talking about range in these forums. Issue: iPad 2 W

  • Exporting Images Questions

    Hi, I basically understand all of LR except for the only part that matters - getting my images out of LR for various purposes such as standard printing, enlargements, work website, personal website (in the future), Facebook etc. I'll save most of my

  • RAM Drive, other SSD as PS Scratch?

    Hey As I sit watching the hourglass spin on another batch (open 1GB file, downsample to 20MB, save as tif) I'm wondering if the use of a RAM drive like the I-ram (4GB PCI SSD or ?) as my primary PS scratch would speed up a process like this. I do a t

  • Mail not working properly after upgrade to  Leopard

    Hopefully this will be a common issue easily solved! After updating from 10.3.9 to Leopard 10.5.6 Mail has become unresponsive after opening - the programme opens but the message window does not appear, the address viewer and connection activity moni

  • Unable to restore iPhone 3Gs with iOS 4 (error 1013)

    I recently updated my 16GB iPhone 3Gs with iOS 4 (iPhone2,14.0_8A293Restore.ipsw) using iTunes 9.2 - it worked fine for a few days then all of a sudden I got a pop up message saying "you are unable to make or receive calls, please connect to iTunes".