Unknown Game Application

From App World i downloaded couple of Games. When i opened them, suddenly a silly looking Game Application popped up forcing me to Get Started. Now when i say NO, it switched off my actual game of interest. When i try to Delete/ Un install this GAME application, nothing happens and i have to be with it. In Permissions in Settings it does not allow me to un ticks anything. Can anyone help to resolve this stupid game app named as "GAMES"? I have its screen shot, if you want me to send.

I, too, have this problem. Out of frustration I eventually hit "Get Started", hoping that it would get rid of it. Instead, a broadcast message that I cannot see went out to all of my BBM contacts. I tried to change the permissions under settings, and the "off" button won't work. It's like it's locked. There are no settings under games either to change this. I hope they fix this bug ASAP. I don't want my scores being broadcasted to my BBM contacts every time I take a dump.

Similar Messages

  • We just moved from the United States to Costa Rica.  The first two days my mac worked great.  Then all of a sudden I was trying to use a game application and the screen went black and there is a white cursor which I can move around, but I can't escape it

    We just moved from the United States to Costa Rica.  The first two days my mac worked great.  Then all of a sudden I was trying to use a game application and the screen went black and there is a white cursor which I can move around, but I can't escape it. When I restart it seems okay and I see my main screen, but only for a second and then it goes black again. 
    This computer was brand new in June.  Is it the humidity???   What can I do.  Please help!!!!

    No guarantess but try smc and pram resets,

  • Application/UNKNOWN/APPLICATION_ERROR - application fault

    Hi!
    I am creating HTTP-XI-SOAP synchronous scenario and I've got some error in RWB:
    SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault
    How can I fix that problem??
    Any sugestions??

    Hi ,
             Please refer the following thread , This might help you
    Application/UNKNOWN/APPLICATION_ERROR
    Regards.,
    V.Rangarajan

  • J2me simple game application

    when i select the new Game option Game Screen doesn't work properly.please help me ican't find problem in this program but the project build sucsessfully;
    Midlet class....
    //@Author Lasantha PW
    //Title Java Developer
    //Project Name Simple Midlet Game Application
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    //main midlet
    public class Mario extends MIDlet{
    Display display; //display object
         //private String player,background;
         private Image splashLogo;//splash image
         MainMenuScreen mainMenuScreen;//main menu object
         AboutScreen about;
         boolean isSplash=true; //splash condition
         MarioCanvas marioCanvas;//=new MarioCanvas(this);
         public int noOfLives=3; //player lives
         public Mario(){
              marioCanvas=new MarioCanvas(this);
              about=new AboutScreen(this);
         public void startApp(){
              display=Display.getDisplay(this);
              mainMenuScreen=new MainMenuScreen(this);
              if(isSplash) {
              isSplash=false;
                   try {
                   splashLogo=Image.createImage("/splash.png");
                   new SplashScreen(display,mainMenuScreen,3000,splashLogo);
              catch(Exception ex){}
         public void pauseApp(){
         public void destroyApp(boolean unconditional){
              notifyDestroyed();
         public void mainMenuScreenQuit(){
              destroyApp(true);
         public void mainMenuScreenShow(){
              display.setCurrent(mainMenuScreen);
         public void gameScreenShow(){
              display.setCurrent(marioCanvas);
              marioCanvas.start1();
         public void aboutScreenShow(){
              display.setCurrent(about);
         public void gameScreenQuit(){
              destroyApp(true);
         public Display getDisplay(){
              return display;
    Main Menu class..................................
    //@Author Lasantha PW
    //Title Java Developer
    //Project Name Simple Midlet Game Application
    import javax.microedition.lcdui.*;
    import java.io.IOException;
    public class MainMenuScreen extends List implements CommandListener{
         //create midlet object
         private Mario midlet;
         //create command objects
         private Command exit=new Command("Exit",Command.EXIT,1);
         private Command select=new Command("Select",Command.ITEM,1);
         //private MarioCanvas marioCanvas;
         public MainMenuScreen(Mario midlet){
         super("Tank32",Choice.IMPLICIT);
         this.midlet=midlet;
         append("New Game",null);
         append("Settings",null);
         append("High Score",null);
         append("Help",null);
         append("About",null);
         addCommand(exit);
         addCommand(select);
         setCommandListener(this);
         public void commandAction(Command c,Displayable d){
         if(c==exit){
         midlet.mainMenuScreenQuit();return;
         else if(c==select){
         processMenu();return;
         else{
         processMenu();return;
         private void processMenu(){
         List down=(List)midlet.display.getCurrent();
         switch(down.getSelectedIndex()){
         case 0:scnNewGame();break;
         case 1:scnSettings();break;
         case 2:scnHighScore();break;
         case 3:scnHelp();break;
         case 4:scnAbout();break;
         //private methods for processMenu method
         private void scnNewGame(){     
              midlet.gameScreenShow();     
         private void scnSettings(){}
         private void scnHighScore(){}
         private void scnHelp(){}
         private void scnAbout(){
              midlet.aboutScreenShow();
    GameScreen......................................
    //@Author Lasantha PW
    //Title Java Developer
    //Project Name Simple Midlet Game Application
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    import java.util.*;
    public class MarioCanvas extends GameCanvas implements Runnable,CommandListener{
    //command objects
         private Command exit=new Command("Exit",Command.EXIT,1);
         //main midlet
         public Mario midlet;
         public boolean isPlay=true;
         public int dx=4;
         public int dy=4;
         public int BASE=(2*getHeight())/3;
         public Vector allObstacles;
         //Resourse for player
         public Image playerPic;
         Player player;
         public boolean leftTrueRightFalse=true;
         //Power power;
         Image powerPic;
         //resourse for devils
         public Image devilPic;
         Devil devil1;
         LayerManager layerManager;
         public MarioCanvas(Mario midlet){
              super(true);
              this.midlet=midlet;
              addCommand(exit);
              setCommandListener(this);
         public void start1(){
              try{
                   //initialize all image objets
                   playerPic=Image.createImage("/player.png");
                   //powerPic=Image.createImage("/power.png");
                   devilPic =Image.createImage("/Devil.png");
                   //player object
                   Player player=new Player(playerPic,0,BASE-15,this);
                   //obstacle objects
                   devil1=new Devil(devilPic,player,100,BASE-15);
                   //vector object
                   allObstacles=new Vector(0,100);
                   //bullets=new Vector();
                   //add obstacles to the vector
                   allObstacles.addElement(((Sprite)devil1));
                   //set all obstacles to player
                   player.setAllObstacles(allObstacles);          
                   layerManager=new LayerManager();
                   //append to the layermanager     
                   layerManager.append(player);
                   layerManager.append(devil1);
                   Thread t=new Thread(this);
                   t.start();
              catch(Exception ex){
                   System.err.println("Error"+ex);
         public void run(){
              while(isPlay){
                   userInput();
                   verifyGameState();
                   updateBackground();
                   updateGameScreen();
              try{Thread.currentThread().sleep(15);}
              catch(Exception ex){}                    
         public void updateBackground(){
              Graphics g=getGraphics();
              g.setColor(0,124,0);
              g.fillRect(0,0,this.getWidth(),this.getHeight());
              g.setColor(0,224,0);
              g.fillRect(0,BASE+30,this.getWidth(),80);
         public void updateGameScreen(){
              Graphics g=this.getGraphics();
              if(player.Y<BASE){
              //player.incrementY(dy);
              else if(player.Y>BASE){
              player.Y=BASE;
              player.setY(BASE);}
              g.setColor(0,244,0);
              g.fillRect(0,BASE+30,1500,80);
              layerManager.paint(g,0,0);
              flushGraphics();
         public void userInput(){
              if((this.getKeyStates()&LEFT_PRESSED)!=0){}
              if((this.getKeyStates()&RIGHT_PRESSED)!=0){}
              if((this.getKeyStates()&FIRE_PRESSED)!=0){}     
         public void verifyGameState(){
         public void commandAction(Command c,Displayable d){
              if(c==exit){
                   midlet.gameScreenQuit();
    }

    pwlasantha wrote:
    when i select the new Game option Game Screen doesn't work properly.please help me ican't find problem in this program but the project build sucsessfully;
    ...If it "doesn't work properly", there's "something going wrong".

  • I am having problem with my games application...non of the game run smoothly and also the games close automaticially

    I am having problem with my games application... no idea where is the problem. non of the game run smoothly 1st in 1st its hard to open the apps in it open than also it will close automatically. Please help me out

    Try This...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use..
    If necessary...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414

  • Recently, I can't get any sound from my game applications.  Sound works fine with video, streaming, etc, but not my game applications.  I've tried powering down and re-booting, but the sound does not return.  Can anyone help me?

    Recently, I can't get any sound from my game applications.  Sound works fine with video, streaming, etc, but not my game applications.  I've tried powering down and re-booting, but the sound does not return.  Can anyone help me?

    Have you got notifications muted ? Only notifications (including games) get muted, so the Music and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad above the volume switch, or via control centre : swipe up from the bottom edge of the screen and it's the right-most of the 5 icons in the middle of it (if the icon is white then it's 'on', tap it to turn it grey and 'off'). The function that isn't on the side switch is set via control centre instead : http://support.apple.com/kb/HT4085

  • I cannot load facebook with pictures and certain game applications?

    for some reason it won't load the facebook website correctly and no pictures show up and i can't get certain game applications to load anymore either.with the update version of mozilla 3.6

    It is possible that you clicked "Block Images" in the right-click context menu while saving an image.
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    You can use these steps to check if images are blocked:
    * Open the web page that has the images missing in a browser tab.
    * Click the website favicon ([[Site Identity Button]]) on the left end of the location bar.
    * Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    * Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    * Select the first image link and scroll down through the list with the Down arrow key.
    * If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • Drag n drop prblem in game application

    Hi guys, i have previously posted a topic bout this, but didn't get d reply i was looking for, i have searched online also but cant seem to find the solution to ma problem.
    I am creating a game application(scrabble) for project in java.
    I want to drag one panel, from an array of panels, and drop it onto another panel on an array of other panels.
    . The scrabble rack consists of an array of seven panels, while the gameboard consists of another array of 225 panels. I want to drag a panel out of the racket[] panel , and drop it onto the gameboard panel. I have searched online for solutions, but the only ones i have seen is using the JLayered pane, which(from what ive seen) has been applied only on objects in the same panel.
    I have attached some parts of the code that is concerned with this problem.
    ScrabbleBoard class:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class ScrabbleBoard implements MouseMotionListener, MouseListener {
    JFrame f;
    JPanel cell[];
    JPanel racket[];
    JPanel gameboard, background, rack, leftmenu, boardback, rightmenu, extraPanel;
    public ScrabbleBoard() {
    f = new JFrame("Scrabble");
    cell = new JPanel[225];
    racket = new JPanel[7];
    rack = new JPanel() {
    public void paintComponent(Graphics b) {
    b.drawImage(new ImageIcon(getClass().getResource("images/rack.jpg")).getImage(), 0, 0, 300, 60, rack);
    super.paintComponent(b);
    arrangeRack();
    arrangeScrabbleBoard();
    setBoard();
    public void mouseClicked(MouseEvent e) {
    public void mousePressed(MouseEvent e) {
    public void mouseDragged(MouseEvent e) {
    public void mouseExited(MouseEvent e) {
    public void mouseEntered(MouseEvent e) {
    public void mouseMoved(MouseEvent e) {
    //add the panels unto the rack randomly from a vector in another class)
    private void arrangeRack() {
    for (int i = 0; i < racket.length; i++) {
    racket[i] = new JPanel();
    racket.setBorder(javax.swing.BorderFactory.createLineBorder(Color.black));
    racket[i].setLayout(new GridLayout(1, 1));
    racket[i].setOpaque(false);
    lbag.addRackTile(lbag.getIndex(), racket[i]);
    rack.add(racket[i]);
    // final JPanel b = (JPanel) racket[i].getComponent(0);
    //arrange the gameboard
    private void arrangeScrabbleBoard() {
    for (int i = 0; i < cell.length; i++) {
    cell[i] = new JPanel();
    cell[i].setBorder(javax.swing.BorderFactory.createLineBorder(Color.white));
    cell[i].setLayout(new GridLayout(1, 1));
    cell[i].setOpaque(false);
    gameboard.add(cell[i]);
    gameboard.setOpaque(false);
    //add the gameboard and rack unto another panel (boardback)
    private void setBoard() {
    boardback.setBounds(410, 20, 650, 750);
    boardback.setLayout(null);
    boardback.add(gameboard);
    boardback.add(rack);
    boardback.setOpaque(false);
    rack.setBounds(0, 680, 280, 40);
    rack.setLayout(new GridLayout(1, 7, 2, 2));
    rack.setOpaque(false);
    background.setOpaque(false);
    background.setSize(1280, 800);
    background.setLayout(null);
    background.add(boardback);
    gameboard.setBounds(25, 20, 600, 600);
    gameboard.setLayout(new GridLayout(15, 15));
    f.add(background);
    f.setLayout(null);
    f.setExtendedState(JFrame.MAXIMIZED_BOTH);
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public static void main(String args[]) {
    try {
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    } catch (Exception e) {
    e.printStackTrace();
    new ScrabbleBoard();

    Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.

  • HT201303 Why show this message in games application? "Please contact itunes support to complete this transaction"

    Why show this message in games application? "Please contact itunes support to complete this transaction"

    Click here and request assistance.
    (70672)

  • Can't find Unknown Plugin (application/x-java-applet;version=1.6.0)

    Trying to use OracleBI Discoverer for running custom reports on Oracle E-Business Suite database.
    Additional plugins are required to display all the media on this page.
    Click here to download plugin.
    Completing the Plugin Finder Service
    No suitable plugins were found.
    Unknown Plugin (application/x-java-applet;version=1.6.0)

    I found a (better) workaround. However, you'll have to edit the pluginreg.dat file, which on Mac OSX is found under:
    ~/Library/Application\ Support/Firefox/Profiles/<hash>.default/
    (where ~ is your home directory path)
    [http://www.emanuelis.eu/2010/06/17/how-to-manage-firefox-plugins-in-pluginreg-dat-file/]

  • How To Download Free Games & Application For IPhone 4 From Itunes & Store !

    Hi guys iam amrit from Nepal I have IPhone 4, I want to download free games & application for iPhone 4 from itunes or application store.Guys please tell me how to download free games & application for iPhone 4 without credit card or debit card.

    Log out of any iTunes account on iPhone then go to the app store. Find a free app and purchase it. Create a new account and select none for payment. Pretty simple
    http://support.apple.com/kb/ht2534

  • Gamming Application Server

    Hi All:
    I ask this question before.
    Are there currently gamming application servers on the market.
    Can Tomcat, JBoss, WebLogic or WebSphere applications server be used.
    Thank You
    Dlwasler

    When writing games, you have to get to market quick.
    Don't write your own server unless you plan to stay
    behind the pack. Use what Java gives you people. Don't
    reinvent the wheel. Uh huh. That's why Quake 3 and Unreal used an off the shelf webserver, right? Oh wait, they didn't.
    Also, if WebLogic and WebSphere are so bad, why do
    they own 50-65% of the market? :-)Bwhahahah!!! Ok dude, you're headed toward silliest comment ever territory. First and foremost, I dare you to find me one action game (board games are not the same) that uses a J2EE server. You won't. You know why? Because it's too slow! When you're playing video games, a 2-5 second turnaround for each datapacket kind of sucks.
    As for why WebLogic and Websphere are popular in the server market (where they're useful), it's because of marketing. Websphere is backed by IBM. There are tons of companies that use nothing but IBM. IBM mainframes, IBM PCs, IBM laptops, IBM service tracking, etc. They're getting screwed for sub-standard software (some of the hardware's ok, save for their laptops which break after the first year) and they don't care because "No one ever got fired for buying IBM". As for WebLogic, they were the first commercial EJB server to market and managed to corner it pretty quickly. Now they are perceived by managers as a "safe and large" company. Personally, I've found their stuff to be of pretty low quality, but maybe that's just me.
    The one to really watch out for is the upcoming underdog of the J2EE market. JBoss? Nope. Oracle Application Server. It's basically a rebrand of Orion with some extra Oracle goodies tacked on. Surfice it to say, this server's been making the market it's whipping boy ever since it was introduced.

  • Adding sound to game application

    Can anyone assist me or provide a link as to how I can add sound to an application(non-applet)? In this case it is a space invaders clone tutorial; now I would like to add sound to when either the player or the aliens fire a laser. The problem is that I'm not sure how to do it. I initially tried using the AudioStream attribute from the sun.audio class but it did not work. Also I would like to add new images to the game background but when I add images to the panel, it does not appear when executed; the game loop I think affects this. Here is some code snippets:
    The initial setup function:
    public Game() {
              //ImagePanel p1 = new ImagePanel(new ImageIcon("City.png").getImage());
              // create a frame to contain our game
              JFrame container = new JFrame("Space Invaders 101");
              // get hold the content of the frame and set up the resolution of the game
              JPanel panel = (JPanel) container.getContentPane();
              panel.setPreferredSize(new Dimension(800,600));
              panel.setLayout(null);
              // setup our canvas size and put it into the content of the frame
              setBounds(0,0,800,600);
              panel.add(this);
              // Tell AWT not to bother repainting our canvas since we're
              // going to do that our self in accelerated mode
              setIgnoreRepaint(true);
              // finally make the window visible
              container.pack();
              container.setResizable(false);
              container.setVisible(true);
              // add a listener to respond to the user closing the window. If they
              // do we'd like to exit the game
              container.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              // add a key input system (defined below) to our canvas
              // so we can respond to key pressed
              addKeyListener(new KeyInputHandler());
              // request the focus so key events come to us
              requestFocus();
              // create the buffering strategy which will allow AWT
              // to manage our accelerated graphics
              createBufferStrategy(2);
              strategy = getBufferStrategy();
              // initialise the entities in our game so there's something
              // to see at startup
              initEntities();
         }then the class for firing a shot:
    public class ShotEntity extends Entity {
         /** The vertical speed at which the players shot moves */
         private double moveSpeed = -300;
         /** The game in which this entity exists */
         private Game game;
         /** True if this shot has been "used", i.e. its hit something */
         private boolean used = false;
          * Create a new shot from the player
          * @param game The game in which the shot has been created
          * @param sprite The sprite representing this shot
          * @param x The initial x location of the shot
          * @param y The initial y location of the shot
         public ShotEntity(Game game,String sprite,int x,int y) {
              super(sprite,x,y);
              this.game = game;
              dy = moveSpeed;
          * Request that this shot moved based on time elapsed
          * @param delta The time that has elapsed since last move
         public void move(long delta) {
              // proceed with normal move
              super.move(delta);
              // if we shot off the screen, remove ourselfs
              if (y < -100) {
                   game.removeEntity(this);
          * Notification that this shot has collided with another
          * entity
          * @parma other The other entity with which we've collided
         public void collidedWith(Entity other) {
              // prevents double kills, if we've already hit something,
              // don't collide
              if (used) {
                   return;
              // if we've hit an alien, kill it!
              if (other instanceof AlienEntity) {
                   // remove the affected entities
                   game.removeEntity(this);
                   game.removeEntity(other);
                   // notify the game that the alien has been killed
                   game.notifyAlienKilled();
                   used = true;
    }The main game loop:
    public void gameLoop() {
              long lastLoopTime = System.currentTimeMillis();
              // keep looping round til the game ends
              while (gameRunning) {
                   // work out how long its been since the last update, this
                   // will be used to calculate how far the entities should
                   // move this loop
                   long delta = System.currentTimeMillis() - lastLoopTime;
                   lastLoopTime = System.currentTimeMillis();
                   // Get hold of a graphics context for the accelerated
                   // surface and blank it out
                   Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
                   g.setColor(Color.black);
                   g.fillRect(0,0,800,600);
                   // cycle round asking each entity to move itself
                   if (!waitingForKeyPress) {
                        for (int i=0;i<entities.size();i++) {
                             Entity entity = (Entity) entities.get(i);
                             entity.move(delta);
                   // cycle round drawing all the entities we have in the game
                   for (int i=0;i<entities.size();i++) {
                        Entity entity = (Entity) entities.get(i);
                        entity.draw(g);
                   // brute force collisions, compare every entity against
                   // every other entity. If any of them collide notify
                   // both entities that the collision has occured
                   for (int p=0;p<entities.size();p++) {
                        for (int s=p+1;s<entities.size();s++) {
                             Entity me = (Entity) entities.get(p);
                             Entity him = (Entity) entities.get(s);
                             if (me.collidesWith(him)) {
                                  me.collidedWith(him);
                                  him.collidedWith(me);
                   // remove any entity that has been marked for clear up
                   entities.removeAll(removeList);
                   removeList.clear();
                   // if a game event has indicated that game logic should
                   // be resolved, cycle round every entity requesting that
                   // their personal logic should be considered.
                   if (logicRequiredThisLoop) {
                        for (int i=0;i<entities.size();i++) {
                             Entity entity = (Entity) entities.get(i);
                             entity.doLogic();
                        logicRequiredThisLoop = false;
                   // if we're waiting for an "any key" press then draw the
                   // current message
                   if (waitingForKeyPress) {
                        g.setColor(Color.white);
                        g.drawString(message,(800-g.getFontMetrics().stringWidth(message))/2,250);
                        g.drawString("Press any key",(800-g.getFontMetrics().stringWidth("Press any key"))/2,300);
                   // finally, we've completed drawing so clear up the graphics
                   // and flip the buffer over
                   g.dispose();
                   strategy.show();
                   // resolve the movement of the ship. First assume the ship
                   // isn't moving. If either cursor key is pressed then
                   // update the movement appropraitely
                   ship.setHorizontalMovement(0);
                   if ((leftPressed) && (!rightPressed)) {
                        ship.setHorizontalMovement(-moveSpeed);
                   } else if ((rightPressed) && (!leftPressed)) {
                        ship.setHorizontalMovement(moveSpeed);
                   // if we're pressing fire, attempt to fire
                   if (firePressed) {
                        tryToFire();
                   // finally pause for a bit. Note: this should run us at about
                   // 100 fps but on windows this might vary each loop due to
                   // a bad implementation of timer
                   try { Thread.sleep(10); } catch (Exception e) {}
         

    for basic sounds, you can use the JavaSound API.
    http://java.sun.com/docs/books/tutorial/sound/index.html
    There are plugin libraries available that add MP3 and OGG support to it.
    http://www.javazoom.net/index.shtml

  • Nokia Asha 201 hides the games & applications

    My
    Nokia 201 asha hides the games and applications downloads such as
    whatsapp and facebook, when I open my apps, it shows gallery(images,
    music, etc) instead of my apps downloads, how am I suppose to fix this?
    Moderator's notes: The post was edited. A more appropriate subject is provided.

    Is that the error message word for word?
    Because I never faced that particular error message and not be able to find it on the Internet. Mhm.
    Were you able to use that trick, mentioned in that other thread?
    If that does not work either, we have to double-check Nokia » Menu » Settings » Configuration. For that, which Internet APN do you need for your network operator and type of contract? If you do not know, we can look it up, but need the name of your operator, and the country your are in.

  • 7.5.5 not recognizing a game application

    I have a lovely little copy of 7.5.5 running via Basilisk II. However, it doesn't seem to recognize the games I've saved over the years, specifically Odyssey: Legend of Nemesis. According to the game designer, the game should run in 7 and 9 neatly.
    When I try to run any of the games, it says "The document "_____" could not be opened, because the application that created it could not be found." Is there a way to tell the OS that the "document" in question is actually an application?
    All help is appreciated. Thanks!

    "The document "_____" could not be opened, because the application that created it could not be found."
    A message like that can often be seen when one tries to double-click upon a file that has been downloaded through a PC. It is normally essential to keep downloaded Mac files (typically, MacBinary = .bin or BinHex = .hqx) as they are until in a Macintosh environment. Once there, drag the encoded file onto StuffIt Expander for Macintosh (or open the file from within that utility).
    Also, in order to fully enjoy older Mac software, it is probably much better to use Macintosh hardware instead of an emulator.
    Jan

Maybe you are looking for

  • Not working 2 of 4 usb ports on imac

    Why not working 2 of 4 usb ports on imac?

  • I cannot print a PDF that was sent via dropbox.

    I can easily print my documents and documents that are in my dropbox.  However someone sent a PDF document in a drop box, and I can not print that.  I can open it but not print. Any help would be appreciated. https://www.dropbox.com/s/i..............

  • Cleaning up of ManagedConnections

              Hi All,           I am using an adapter with local transaction support. I have one client which           is performing lots of transactions. Max No. of connections are 10 and min. no.           of connections are 5. The client gets a conne

  • Good Receipt's Amount

    Hi all, Could you please tell which field(table) to be used in ECC to get Good Receipt's amount into BW. I am using Purchasing Data Flow. Thanks in Advance, Uday Shankar.

  • My file and artboard changes size when I export

    I all, I'm working on a file that I have setup as 1045 px by 154 px. When I export this file to jpeg, png or bmp the file become over 4000 px wide. This is likely an easy thing I'm missing. Can anyone shed some light? Thank you Nelson