How do I get my game to work in Parallels?

I purchased parallels to run programes in Windows XP and I upgraded to Parallels 3.0 to have the ability to play DirectX games. I loaded Empire Earth II Platimun Edition. When I put the disc in to play I get a popup message to insert the original disk. It is the original disc. I have 2 copies of the game and put the other copy in (original also) and received the same request. Has anyone succeeded in playing Empire Earth? How did u do it? I imagine my next hurdle will be networking EE in a LAN party.
Thanks for any help.

You should visit the Parallels Support Forum for help with this issue.
http://forums.parallels.com
You might also check with the manufacturer of the game for support.

Similar Messages

  • Updated to IOS 5.0.1 and now if I tap on a game icon instead of opening the game a grayish color comes over it and nothing happens. How can I get my games to work again?

    Updated to IOS 5.0.1 and now if I tap on a game icon instead of opening the game a grayish color comes over it and nothing happens. How can I get my games to work again?

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • How do I get a game to work in more than just my account?

    I bought a game for my son at the weekend, which I installed successfully and it works fine in my account. But despite having it selected in Parental Controls, it won't work in his account. I tried removing all controls for him, but it still didn't work. The icon for the program looks like the general Apple icon, with ruler, brush, and pencil, and when you click on it a message appears saying "You cannot open the application because it may be damaged or incomplete". Well this isn't true, because it works in my account.
    I tried searching for info about the error message on the Internet, and found advice on dealing with the message when it appeared with a completely different program. It advised right-clicking on the icon, and clicking on Show Package Contents, then Contents>Mac OS. Then it said double click on the icon (which opens Terminal) in there and next time it should run OK. This didn't work, but I noticed that there was not as much text in the Terminal window in my son's account as in mine, so I wonder if I need to enter the same text for him. This is all getting rather complicated, but does anybody know anything about Terminal, and whether any of this makes sense? Or is there something else I need to do?

    Sphinx,
    The folder that you copied should already contain any saved games, and they must remain where they are, relative to the game itself.
    If you would like the copy to go back into the Applications folder, go right ahead and put it there, replacing the original. As long as you are just moving it, not making a copy, ownership will be retained by your son.
    Kiraly has posted a command for use in Terminal. The command he has given does nothing for ownership, but rather changes permissions such that anyone will be able to run the game. The problem with this is that any new saved games will revert to the default permissions, and you will again encounter errors.
    It is far better, in my opinion, to manage ownerhip in this case, not permissions.
    OK, let's get started. The command to change ownership of any item is rather simple:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown <who> <what></pre>
    the "who" part will refer to a user by short name, and the "what" part will be the path to a file or folder. So far, we have three elements included in our command, and each one is separated by a space. The problem with this is that we can only modify items that we own; only "root" can modify items regardless of ownership. So, we are more often required to "become root" in order to execute this command:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown <who> <what></pre>
    By preceeding our command with "sudo," we tell the command to execute as the "root user." Only admin users are allowed to perform this action, so we will be asked for our admin password. Once we have typed the command correctly, we press <RETURN>. We will receive a password prompt. We then type our password (it will not be echoed) and again press <RETURN> to execute the command.
    This works fine for single files, but we will usually be dealing with more than a single item. Your case is a good example; one where ownership of an entire directory structure, including any "nested" files and folders, must be changed. For this, we need to add an "option" to the command: the "-R" option. This tells the command to change the ownership of the item named in the "path," and then to do the same "recursively" to every file and/or folder nested inside. It also implies that the target is a directory:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R <who> <what></pre>
    Let's now talk about the two remaining variables, the "arguments" to the command.... The first argument (the "who" part) requires a bit of discussion. In simple terms, this will be a user's short name. However, it will most often also be necessary to change the "group ownership" when we change ownership. There is a separate command to accomplish this, but we can easily forego the need to use this second command by including it in this one. The tool we must use to do this is the ":" modifier, inlcuded in our "who" argument. In 10.3 and later, all users are members of their own, unique group, so we simply use their short name (which is also their group) twice:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R <who:who> <what></pre>
    Now for the final part, the "what" argument... As stated earlier, this will be the path to the intended target (for example, /Users/HOME/Documents/My_Folder). Here, we must discuss the possibility that a path name will include spaces. We can name directories in OS X using spaces, but UNIX needs a little help with them. Since UNIX will normally see any space as an indication that another element to the command is coming, we must explicitly tell it that such is not the case. In other words, we must "escape" the space. We do this by using the forward slash before our space: "\" Let us assume that we have a folder named "My Folder" for which we want to change ownership. Our command will look something like this:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R fred:fred /Users/fred/Documents/My\ Folder</pre>
    Obviously, the above command also assumes that we are logged in as "fred," and we are giving ourselves ownership of a folder in "fred's" HOME folder.
    If this path naming convention is daunting to you, or you simply aren't sure of the correct path, the process can be automated somewhat. Any item can be dragged from the Finder into the Terminal window, and Terminal will automatically fill in the correct path. In this case, we would type the first part of our command:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R fred:fred</pre>
    Next, we would type a trailing space, and then we would drag our folder from the Finder into the Terminal window. Finally, we would press <RETURN>, enter our admin password, then press <RETURN> again to execute.
    Scott

  • How can I get my speaker to work again?

    How can I get my speaker to work again? I've tried turning my phone off and on, hard reset, removing SIM, cleaning out dust, using the hair dryer, network reset, cleaning headphone port, made sure the phone was not on vibrate,and made sure "Change with buttons" was on. There was no liquid/moisture damage.  I was watching a video on youtube and all of a sudden my speaker went out. If I tap on the speaker it goes in and out but does not stay on/loud.

    Do you get sound in any apps e.g. in Music and Videos but not notifications or sound in other apps ? If you do get sound in Music and Videos then 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 the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If you don't get sound in any apps then have you could try a soft-reset to see if you get sound after the iPad has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • HT2490 the "X" to close tabs on my macbook is gone how do I get it back to work again

    the "X" to close tabs on my macbook is gone how do I get it back to work again

    If you lost sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the control center if you are running iOS 7. Swipe up from the bottom of the screen to get to control center . Tap on the bell icon and system sounds will return.
    If you are running iOS 5 or iOS 6, the system sound control is in the task bar at the bottom. Double tap the home button and swipe all the way to the right in the task bar to get to the speaker icon on the left side. Tap on that and the sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock can be accessed in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • Getting RIFT game to work with Crossover?

    I'm currently trying to get this game to work.  It will boot up, load fine and everytime I start the game, it says I should get updated drivers.  Has anyone else had this and found a way to update them?  I currently have this configuration:
    OS = mac OS X10.6.7
    memory = 4 GB DDR3 1067 MHz (2 2GB sticks)
    Graphics = Nvidia GeForce 9600M GT*
    processor = Intel Core 2 Duo 2.8 GHz
    *when graphics are turned off I have the GeForce 9400M graphics. 
    The game will play on about half and hour to an hour then the screen will freeze.  It freezes but not entirely.  My character will not move, but if i hit the directional pad, his weapons move as if he is (when he really isn't).  if that makes any sense at all.  it will happen when I'm just walking around and it happens when I'm in battle.  When in battle I can still hear the abilities/talents working and the creature die.  It has to be this driver because I can't think of anything else but that.  Its the only thing keeping this game from functioning properly.  I have contacted codeweavers to see what they recommend or even if they have a fix, and I'm anxiously awaiting a reply. 
    I don't care so much about the visuals as I do being able to play the game.  I was told it may be my drivers, and I don't think there are any available for mac, unless you know how to go in and change some coding (which I'm not about to mess up my entire computer trying to follow the instructions in German).  I don't want to install windows because I switched to mac and don't wanna go back.  Windows = problems in my book.  If anyone is familiar with this problem and can help out I would appreciate it.
    Thanks

    Have you tried searching/asking in the crossover forums?
    http://www.codeweavers.com/support/forums/general/?;t=27

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • I am trying to setup my ipad 2 but I can't get back to the wi-fi connections section.  How do I get there, nothing is working.

    I am trying to setup my ipad 2 but I can't get back to the wi-fi connections section.  How do I get there, nothing is working.

    The Wi-Fi connections section is in Settings > Wi-Fi
    If the home screen is not visible tap the Home button, the button on the front of your iPad that has the rounded square in it. Once you reach the Home screen swipe through the screen of apps until you find the Settings app. Tap Settings and go to Wi-Fi.
    If your iPad is completely non responsive, try a restart.
    Press and hold the Home button and the Sleep button simultaneously ignoring the red slider. Keep holding until the Aple logo appears and your iPad will restart.
    The sleep button is on the side of your iPad on the side opposite from the Home button.

  • The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.

    The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.
    Does anyone know what I can do?  I am unable to switch screens, and I can not see the track that is playing.  The only was I can switch between songs is to use the controls on my headphones.

    Try the stamdard fixes to rule out a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • After installing the latest version of ITunes I get an error message that says this application has failed to start because MSVCR80.dll was not found.  how do I get Itunes to start working again?

    After installing the latest version of ITunes I get an error message that says this application has failed to start because MSVCR80.dll was not found.  how do I get Itunes to start working again?

    See... Unable to install or open > http://support.apple.com/kb/TS5376
    Also See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • How do I get iTunes 11 to work as the old iTunes did in this respect: after playing a song in one playlist, I click on another playlist, highlight a song, press play, and get the result of that song playing & that playlist continuing?

       How do I get iTunes 11 to work as the old iTunes did in this respect: after playing a song in one playlist, I click on another playlist, highlight a song, press play, and get the result of that song playing & that playlist continuing?  As it goes now, one clicks on the song in the new playlist where the arrow is and then chooses 'Play Song Next.'  So, it plays next, but then the song after that is back in the old playlist.  I want to use iTunes smoothly without the extra clicks I've had to do in order to get the playlist to continue.  This is music for background while I play the violin at restaurants, and extra clicks and hassle is quite unappreciated, especailly since it worked fine in the previous iTunes.
       Thanks.

    At the top of the playlist where it shows the playlist title and the number of songs, there are two icons. Click the "play" triangle to add the entire playlist to "Up Next", or the "shuffle" symbol to do the same thing but in random order. But the currently playing track will stop playing, and all the songs in "Up Next" will be removed (replaced by the ones from this playlist).
    If you hold down the "option" key while clicking those icons, the currently playing song will continue playing, and the new playlist will be added to "Up Next" (above the songs that were already there).

  • How do I get certain games to fit in the box allowed (farmville on facebook)??

    Whenever I open my farmville game using fire fox the game seems to large for the box I have to play in I am missing a whole border around the game, if I use explorer to open the game from the same account it comes in just right. How do I get the game smaller so I am not missing any part of my game?? And why does it seem fire fox all the sudden run slower then explorer, it use to be alot better and faster and now I have nothing but problems.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.1 r53
    # Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Sharing an itunes account but how do you get seperate game centers?

    Me & my aunt share an itunes account. I have an itouch & she now has an iphone. How do we get seperate game centers?

    You should be able to copy it from the iPhone to your computer's iTunes via File > Transfer Purchases

  • I rented a movie on my iPad that stopped downloading in the videos app and when I tried to download it again it said I had to go to the iTunes Store but there were no downloads there. How do I get my movie to work!

    I rented a movie on my iPad that stopped downloading and when I tried to download it again it said I had to go to the iTunes Store but there were no downloads there. How do I get my movie to work!

    What is your current connection via speedtest.net
    Make sure DNS is set to auto (settings - general - network)
    If on wifi try ethernet

Maybe you are looking for

  • Batch managment

    Can any one explain me the very clear picture between client level,plant level and material level with one suitable example. What will happen if i do the goods receipt for STO within the same company code how the batch will be generated depending on

  • How can i run Windows on a macbook Pro

    Hello I am close to a business decission to use in future a MACBook Pro with Retsina Display For Business reasons i have to be able to run also Winodws in a Virtual machine as some company internal applications need Windows Which program would i use

  • Installing PHP on FMIS 3.5

    I've recently installed and set up a FMIS 3.5 setup and my web developer wants to have php on the server to create some dynamic content.  Trouble is, I can not for the life of me get PHP to work on the server.  Is there some special instructions that

  • How can I hide recently watched videos in the context menu of programs in Lion (like f.e. VLC player)?

    Thanks!

  • Problems with AS91

    When trying to create new assets using t-code AS91, I am getting the following error - Current Fiscal Year 2005 has to be after transfer date 31.12.2008 Can anyone help with this? Many thanks,