Game Help, please?

I downloaded Bejeweled for my iPod using my mom's account (which is verified on my computer) and it says I'm not authorized to play the game, yet I can still listen to music downloaded from her account. Any idea how to fix this? Any help would be great, thanks!

deauthorise your pc and reauthorise it will be fine after

Similar Messages

  • Connect 4 game ( help please )

    please compile this game to see the output
    but my problem is :
    when you press the button of player one the ball appear but when you move it by mouse, it should move in the the range of the net only but it move in all screen
    why ??
    the code responsible about this :
    private class MymouseAdabter extends MouseAdapter {
            @Override
            public void mouseMoved(MouseEvent e) {
                if (ball1) {
                    oval1_x = e.getX();
                    if (e.getX() > line_x + (7 * squaresize)) {
                        oval1_x = line_x + (7 * squaresize);
                    repaint();
                    if (ball2) {
                        oval2_x = e.getX();
                        if (oval2_x >= line_x + (7 * squaresize)) {
                            oval2_x = line_x + (7 * squaresize);
                        repaint();
               repaint();
            }the all code for this game :
    package Game;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.BorderFactory;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class Game extends JFrame {
        private JPanel mainPlayer_panel;
        private JPanel playerone_panel;
        public static JButton play_one;
        private JPanel scoreone_panel;
        private JLabel score_one;
        private static JTextField field_one;
        private JPanel playertwo_panel;
        public static JButton play_two;
        private JPanel scoretwo_panel;
        private JLabel score_two;
        private static JTextField field_two;
        public Game() {
            mainPlayer_panel = new JPanel();
            mainPlayer_panel.setPreferredSize(new Dimension(200, 200));
            mainPlayer_panel.setBorder(BorderFactory.createTitledBorder("player"));
            mainPlayer_panel.setBackground(Color.pink);
            mainPlayer_panel.setBounds(900, 100, 300, 500);
            playerone_panel = new JPanel();
            playerone_panel.setPreferredSize(new Dimension(200, 200));
            playerone_panel.setBorder(BorderFactory.createTitledBorder("player one"));
            play_one = new JButton("playe");
            play_one.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    CreateImage.play_oneActionListener();
                    repaint();
            scoreone_panel = new JPanel(new FlowLayout());
            score_one = new JLabel("score");
            field_one = new JTextField(10);
            scoreone_panel.add(score_one);
            scoreone_panel.add(field_one);
            playerone_panel.add(play_one);
            playerone_panel.add(scoreone_panel);
            playertwo_panel = new JPanel();
            playertwo_panel.setPreferredSize(new Dimension(200, 200));
            playertwo_panel.setBorder(BorderFactory.createTitledBorder("player one"));
            play_two = new JButton("playe");
            play_two.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    CreateImage.play_twoActionListener();
                    repaint();
            scoretwo_panel = new JPanel(new FlowLayout());
            score_two = new JLabel("score");
            field_two = new JTextField(10);
            scoretwo_panel.add(score_two);
            scoretwo_panel.add(field_two);
            playertwo_panel.add(play_two);
            playertwo_panel.add(scoretwo_panel);
            mainPlayer_panel.add(playerone_panel);
            mainPlayer_panel.add(playertwo_panel);
            getContentPane().add(mainPlayer_panel);
            getContentPane().add(new CreateImage());
        public static void main(String[] args) {
            JFrame frame = new Game();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setSize(1000, 800);
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    package Game;
    import java.awt.BasicStroke;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.geom.Line2D;
    import java.awt.image.BufferedImage;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    public class CreateImage extends JPanel {
        private BufferedImage image;
        private Graphics g;
        private ImageIcon icon;
        private JLabel image_label;
        public static int squaresize = 80,  line_x = 40,  line_y = 120;
        public static int oval1_x = line_x + (3 * squaresize),  oval1_y = 120;
        public static int oval2_x = line_x + (3 * squaresize),  oval2_y = 120;
        public static boolean ball1,  ball2;
        public CreateImage() {
            image = new BufferedImage(700, 1000, BufferedImage.TYPE_INT_RGB);
            g = image.getGraphics();
            g.setColor(Color.white);
            g.fillRect(0, 0, image.getWidth(), image.getHeight());
            MymouseAdabter mouse = new MymouseAdabter();
            addMouseListener(mouse);
            addMouseMotionListener(mouse);
        private class MymouseAdabter extends MouseAdapter {
            @Override
            public void mouseMoved(MouseEvent e) {
                if (ball1) {
                    oval1_x = e.getX();
                    if (e.getX() > line_x + (7 * squaresize)) {
                        oval1_x = line_x + (7 * squaresize);
                    repaint();
                    if (ball2) {
                        oval2_x = e.getX();
                        if (oval2_x >= line_x + (7 * squaresize)) {
                            oval2_x = line_x + (7 * squaresize);
                        repaint();
                //repaint();
        @Override
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D) g;
            g.drawImage(image, 0, 0, null);
            line_x = 40;
            line_y = 120;
            for (int row = 1; row <= 7; ++row) {
                BasicStroke line = new BasicStroke(5);
                g2.setStroke(line);
                g2.setColor(Color.BLUE);
                g2.draw(new Line2D.Double(line_x, line_y, line_x + (7 * squaresize), line_y));
                line_y += squaresize;
            line_x = 40;
            line_y = 120;
            for (int col = 0; col <= 7; col++) {
                BasicStroke line = new BasicStroke(5);
                g2.setStroke(line);
                g2.setColor(Color.BLUE);
                g2.draw(new Line2D.Double(line_x, line_y, line_x, line_y + (6 * squaresize)));
                line_x += squaresize;
            if (ball1) {
                g.setColor(Color.BLACK);
                g.fillOval(oval1_x, oval1_y - squaresize, squaresize, squaresize);
            if (ball2) {
                g.setColor(Color.BLUE);
                g.fillOval(oval1_x, oval1_y - squaresize, squaresize, squaresize);
        public static void play_oneActionListener() {
            ball1 = true;
            ball2 = false;
        public static void play_twoActionListener() {
            ball2 = true;
            ball1 = false;
    }thanks for your help in advance

    A couple of recommendations, tempered by the fact that I'm not a graphics wiz:
    1) Many of your fields in the CreateImage class that are declared public static should in fact be private and not be declared static. These include oval1_x and oval1_y, and ball1 and ball2. The squareSize, line_x and line_y should probably be declared as constants (static final).
    2) Consider drawing your grid with your BufferedImage's graphics object and thus creating it outside of the paintComponent method and only having to create it once.
    3) In your mouseMoved method, I see where you change the ball's x position, but where do you change its y position?
    4) Your {if (ball2)" block is nested within the "if (ball1)" block.  Are you really sure that you want to do this?  My guess is no.
    5) Your play one / two actionlisteners should be instance methods, not static methods.
    Now for some bigger problems:
    6) As written, your CreateImage class will only draw one ball, that's it.  You likely need a "Ball" class that encapsulates the Ball graphics, and have the CreateImage class hold an ArrayList of these animals.
    7) I see no code that expresses the game logic, that encapsulates a non-GUI grid, that makes sure that balls are placed in a logical location within the non-GUI grid, that checks for win / loss, and that eventually ties the non-GUI grid and balls with their GUI equivalents.  It's all GUI without logic.  If I were doing this, I'd do the logic part first, then drape the GUI over the logic code.
    Good luck                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Multiplayer never working on my iphone games help please!

    I have so many games on my iphone 30% of them contain multiplayer. Now the game and everything starts and proceeds just fine but when I try multiplayer (online mode) some games say check your network connection others say servers are down and stuff like that... while i checked my connection and it is working properly and I also asked my friend if he had the same message about the servers he said it's working on his iphone just fine. What could be causing multiplayer NEVER to open on my iphone? I have not too many but plenty stuff downloaded on my iphone but I can't figure out what could be causing the problem i'd appreciate some help!! And thank you

    over wifi or over cellular ?
    in both cases the required ports need to allowed if wifi then you should check your wifi routers settings if the ports are open
    if 3g then you should contact the carrier

  • Director/Lingo Game HELP Please!!

    I have created a game using Director written in Lingo, for a uni project. We have been set requirements which include not being allowed to use the go to frame x behaviour.
    So instead I decided to use this code:
    on mouseDown me
      _movie.go("Levels", "IslandMission")
    end
    IslandMission being the name of the file and Levels to be the name of the marker.
    This code works but it asks to save the game if it hasn't already been before it will move to the desired destination. This was only a small issue that was able to overcome but I new issue has arised. When the background of the game has been selected it jumps to a frame within the game everytime, I have never set the background on any frame to be linked to any other frame. This makes my game impossible to play as it involves clicking moving sprites.
    Any help on what code I can use instead that won't cause these issues would be greatly appreciated thank you.

    It would appear your deadline has passed. Sorry, but I wasn't awake at 2AM If you still want your file fixed perhaps you could upload it somewhere, or PM me with your email address and you can send it to me.

  • I can't purchase Borderlands 2 with itunes card , it says insufficient remaining store credit , some help please

    I redeem the code from my itunes card , and Mac app store dont let me purchase the game. help please , i already have $15 in my account

    The prices on the US store don't include the local sales tax that Apple must add on in the final steps of the sale. You need to put more than just $15 credit in the account to buy a $15 app/game.

  • HT3702 I'm trying to update a game and its telling me I need to view my billing.i check my billing and it isn't giving me a none option. It's forcing me to put a credit card in, in order to update a game. Help please:(

    I'm trying to update a game and its telling me I need to view my billing.i check my billing and it isn't giving me a none option. It's forcing me to put a credit card in, in order to update a game. Help please:(

    Well, that is probably becasue you owe a debt or something similar.
    Check with
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Help!! I just updated my iPad 2 into IOS 5.1.1.. When it finished updating, I can't open all of my games. Please help me fix this. :( thank you.

    Help!! I just updated my iPad 2 into IOS 5.1.1.. When it finished updating, I can't open all of my games. Please help me fix this. :( thank you.

    You are most welcome

  • Hi, I have an iPod touch 5th generation which i got about 10 months ago and now my sound is not working. for example my music isn't playing nor are any of my game sounds. Someone help please.

    Hi, I have an iPod touch 5th generation which i got about 10 months ago and now my sound is not working. for example my music isn't playing nor are any of my game sounds. Someone help please.

    No sound form :
    - Speaker?
    - Headphones?
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • After updating to Firefox 4, I have lost 4 plugins/add ons due to their NOT being compatible. I can no longer play my bejewelled game. Please help me here. Can I get Firefx 3.6 back? Will that help me?

    Firefox 3.6 allowed me to play games, Firefox 4 upgrade doesn't.Question
    After updating to Firefox 4, I have lost 4 plugins/add ons due to their NOT being compatible. I can no longer play my bejewelled game. Please help me here. Can I get Firefx 3.6 back? Will that help me?

    http://support.mozilla.com/en-US/kb/Installing+a+previous+version+of+Firefox
    http://www.mozilla.com/en-US/firefox/all-older.html

  • HT4314 Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game.

    Contact iTunes
    Contact iTunes

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I have not been able to update my fairy farm game for the last 5days as it quit at launch. I am afraid to delete and reinstall the game as i might lose all. Anyone knows if there is an update for this game? Please help. Thanks

    I have not been able to update my fairy farm game for the last 5days as it quit at launch. I am afraid to delete and reinstall the game as i might lose all. Anyone knows if there is an update for this game? Please help. Thanks

    Erdygirl please be aware you are posting to a public forum.  I have removed your personal information from your previous post.
    Please check your account at http://www.adobe.com/ to locate your serial number.  You can find more information on how to locate your serial number at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.

  • I need help adding a mouse motion listner to my game. PLEASE i need it for

    I need help adding a mouse motion listner to my game. PLEASE i need it for a grade.
    i have a basic game that shoots target how can use the motion listner so that paint objects (the aim) move with the mouse.
    i am able to shoot targets but it jus clicks to them ive been using this:
    public void mouse() {
    dotX = mouseX;
    dotY = mouseY;
    int d = Math.abs(dotX - (targetX + 60/2)) + Math.abs(dotY - (targetY + 60/2));
    if(d < 15) {
    score++;
    s1 = "" + score;
    else {
    score--;
    s1 = "" + score;
    and here's my cross hairs used for aiming
    //lines
    page.setStroke(new BasicStroke(1));
    page.setColor(Color.green);
    page.drawLine(dotX-10,dotY,dotX+10,dotY);
    page.drawLine(dotX,dotY-10,dotX,dotY+10);
    //cricle
    page.setColor(new Color(0,168,0,100));
    page.fillOval(dotX-10,dotY-10,20,20);
    please can some1 help me

    please can some1 help meNot when you triple post a question:
    http://forum.java.sun.com/thread.jspa?threadID=5244281
    http://forum.java.sun.com/thread.jspa?threadID=5244277

  • HT204266 I am trying to download Tap Tap Revenge on my new Ipad air..however..i searched for it in the App Store but there are none...help please..i really love this game! Is there something wrong with my App Store or my ipad??

    I am trying to download Tap Tap Revenge on my new Ipad air..however..i searched for it in the App Store but there are none...help please..i really love this game! Is there something wrong with my App Store or my ipad??

    It looks like the app is not currently in the App Store, I can't find it in the UK nor US stores.
    If you had previously downloaded it then do you have a copy on your computer's iTunes so that you can sync it to your iPad ?

  • I am downloading a 6.4GB game with Safari. Download starts very well, 850KB/s but systematically after 10 or 15mn speed goes down until download stops. Can somebody help please?

    I am downloading a 6.4GB game with Safari. Download starts very well, 850KB/s but systematically after 10 or 15mn speed goes down until download stops. Can somebody help please?

    systematically after 10 or 15mn speed goes down until download stops
    Check with your iSP. There may be a limit to files sizes.

Maybe you are looking for