The sims 2 disc won't load

When I put in the disc for the first time, it doesn't appear on my desktop.
When I go to applications it appears there but when I click on 'Open' nothing happens and whatever else I click on either comes up with a load of random writing or a picture of the logo.
Help please!

Not sure what a sims 2 disk is.
You are talking about a DVD/CD ?
Re: http://modthesims.info/t/469230
You do not say what OS X you are running?
if it is a PPC app it will not run without Rosetta Software which is not supported in 10.8 or 10.9

Similar Messages

  • The Sims 3 won't load on MacBook Pro 2012

    I recently just got a new MacBook Pro and I had my Sims 3 game from when it first came out.  However, the game isn't being recognized by the computer.  The case shows that the game is compatible with Windows and Mac.  I heard if you install to Windows you can't install to Mac right?  I'm confused.  Does this mean I need to go buy a new game?

    See if this is of any help:
    /https://help.ea.com/article/how-to-install-sims-3-and-expansions-on-a-mac-os
    Ciao.

  • My iPhone 4S will not connect to the internet properly. It says that it is connected, the App Store won't load apps and I can't get on my face book app. I have tried wifi and my cellular data, neither work. What are some ways to fix this?

    My iPhone will
    not connect to the internet properly. It says that it is connected, the App Store won't load apps and I can't get on my face book app. I have tried wifi and my cellular data, neither work. What are some ways to fix this?

    Try resetting your network settings.
    Settings>Genenal>Reset>Reset Network Settings.

  • Itunes will not connect with the store.  I get no error message.  The store just won't load on the screen.

    Itunes will not connect to the store.  I get no error message, the store just won't load.

    Have you had a look here,
    Can't connect to the iTunes Store
    From here
    http://www.apple.com/support/itunes/troubleshooting/

  • The file just won't load into array...Please Help!

    hi i need some help in loading a binary file into an array so that i can edit the data that was saved from previous run..
    i could save the file but after that when i try to load it back to memory...i can't...ie. all the information keyed in were lost...please help
    this is the Code for the loading process...
         public static void loadAircraft (ArrayList aircraft) {
              try {
                   FileInputStream filein = new FileInputStream(".\\Data\\Aircraft.bin");
                   ObjectInputStream objectin = new ObjectInputStream(filein);
                   Aircraft craft = (Aircraft) objectin.readObject();
                   aircraft.add(craft);
                   objectin.close();
                   filein.close();
              catch (Exception e) {}
         }the above code won't load anything into memory...is there a way for overcoming this?
    inside the Aircraft class there are four different data of which they contain two differen data types.
    one of which is String and the other three are in int.
    Awaiting for reply...thanks

    yes...its some objects of an array that i am trying to load back...
    erm...i'll show you the whole code maybe...
    //to reference the swing library
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    public class SetupAircraft {
         static ArrayList aircraft;
         public static void init () {
              aircraft = new ArrayList(5);
              loadAircraft(aircraft);
         //opens up another sub group while the user
         //entered 1 as his/her option in the SetupSystem
         //menu
         public static void Setup () {
              //this will create a string that is going to be displayed
              //in the input dialog box
              String menu = "  Please select an option:  \n"
                              +"----------------------------\n"
                              +"1) Add New Aircraft\n"
                              +"2) Edit Existing Aircraft\n"
                              +"3) List Aircraft\n"
                              +"4) Delete Existing Aircraft\n"
                              +"5) Save\n"
                              +"6) Return to Main Menu\n\n"
                              +"   Enter a number between 1-6\n";
              //declare a field named option for selection through menu
              int option = 0;
              //continue the loop until the user inputs the number 6
              do {
                   //error handling for the input from the menu
                   //if the input is not integer the error is caught and
                   //reassigning option to be 0
                   try {
                        option = Integer.parseInt(JOptionPane.showInputDialog(null, menu,
                                   "Setup Aircraft", JOptionPane.QUESTION_MESSAGE));
                   catch (NumberFormatException e) {
                        option = 0;
                   //determine which option the user has chosen
                   //and enters the respective section
                   switch (option) {
                        case 1: add(aircraft);
                                  break;
                        case 2: edit(aircraft);
                                  break;
                        case 3: list(aircraft);
                                  break;
                        case 4: //delete(aircraft);
                                  break;
                        case 5: save(aircraft);
                                  break;
                        case 6:     return;
                        default: JOptionPane.showMessageDialog(null, "Please enter a number between 1-6",
                                   "Alert", JOptionPane.ERROR_MESSAGE);
                                   option = 0;
              while (true);
         public static void add (ArrayList aircraft) {
              String type = "";
              int first = 0;
              int business = 0;
              int economy = 0;
              do {
                   try {
                        type = JOptionPane.showInputDialog(null,"Enter Aircraft Type", "Prompt for Type",
                        JOptionPane.QUESTION_MESSAGE);
                        try {
                             if(aircraft.contains(type)) {
                                  JOptionPane.showMessageDialog(null, type + " already exist!",
                                  "Error", JOptionPane.ERROR_MESSAGE);
                                  type = "-100";
                        catch (Exception e) {}
                        if (type=="-100");
                        else if (type.length()==0) {
                             JOptionPane.showMessageDialog(null, "Please enter an aircraft type",
                             "Error", JOptionPane.ERROR_MESSAGE);
                        else if (!(type.startsWith("-",3))) {
                             JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                             "Error", JOptionPane.ERROR_MESSAGE);
                             type = "0";
                   //catch the input error that the user has produces.
                   catch (Exception e) {
                        return;
              while (!(type.startsWith("-",3)));
              //try to ask the user for the passenger's name and if the name field contains
              //no characters at all repeat the prompt for name field until the user presses
              //Cancel.
              try {
                   first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              try {
                   business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              try {
                   economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              Aircraft newAircraft = new Aircraft (type, first, business, economy);
              aircraft.add(newAircraft);
              JOptionPane.showMessageDialog(null, "Aircraft Sucessfully Added",
              "Successful", JOptionPane.INFORMATION_MESSAGE);
         public static void edit (ArrayList aircraft) {
              String type = "";
              int first = 0;
              int business = 0;
              int economy = 0;
              do {
                   try {
                        type = JOptionPane.showInputDialog(null, "Enter Aircraft Type to Edit",
                        "Prompt for Type", JOptionPane.QUESTION_MESSAGE);
                        if (type.length()==0) {
                             JOptionPane.showMessageDialog(null,"Please enter an aircraft type",
                             "Error",JOptionPane.ERROR_MESSAGE);
                        else if (!(type.startsWith("-",3))) {
                             JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                             "Error", JOptionPane.ERROR_MESSAGE);
                             type = "0";
                   catch (Exception e) {
                        return;
              while (!(type.startsWith("-",3)));
              try {
                   int edited = aircraft.indexOf(new UniqueAircraft(type));
                   Aircraft craft = (Aircraft)aircraft.get(edited);
                   try {
                        first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   try {
                        business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   try {
                        economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   Aircraft newAircraft = new Aircraft (type, first, business, economy);
                   aircraft.add(newAircraft);
                   aircraft.add(newAircraft);
                   JOptionPane.showMessageDialog(null, "Successfully edited aircraft\n"+type+" to capacities\n"
                   +"First: "+first+"\n"+"Business: "+business+"\n"+"Economy: "+economy,
                   "Successful", JOptionPane.INFORMATION_MESSAGE);
              catch (Exception e) {
                   JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
         public static void list (ArrayList aircraft) {
              JOptionPane.showMessageDialog(null, aircraft.size()+" aircraft found", "Found",JOptionPane.INFORMATION_MESSAGE);
              Object[] aircrafts;
              aircrafts = aircraft.toArray();
              for (int i=0;i<aircraft.size();i++) {
                   Aircraft a = (Aircraft) aircrafts;
                   JOptionPane.showMessageDialog(null, a, "Aircrafts" + (i+1), JOptionPane.INFORMATION_MESSAGE);
         public static void save (ArrayList aircraft) {
              try {
                   FileOutputStream fileout = new FileOutputStream(".\\Data\\Aircraft.bin");
                   ObjectOutputStream objectout = new ObjectOutputStream(fileout);
                   Object[] aircrafts;
                   aircrafts = aircraft.toArray();
                   objectout.writeObject(aircrafts);
                   objectout.close();
                   fileout.close();
                   JOptionPane.showMessageDialog(null,aircraft.size()+" aircrafts saved", "Sucessful", JOptionPane.INFORMATION_MESSAGE);
              catch (IOException e) {
                   JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
         public static void loadAircraft (ArrayList aircraft) {
              try {
                   FileInputStream filein = new FileInputStream(".\\Data\\Aircraft.bin");
                   ObjectInputStream objectin = new ObjectInputStream(filein);
                   Aircraft craft = null;
                   while ((craft=(Aircraft)objectin.readObject())!=null) {
                        aircraft.add(craft);
                   objectin.close();
                   filein.close();
              catch (Exception e) {
                   JOptionPane.showMessageDialog(null,e.toString());
                   e.printStackTrace();
    i think thats a bit too long..but it would explain what i am trying to save...its linking to the class Aircraft tho...
    thanks...i appreciate your help...

  • I'm running OSX 10.6.8. I have final cut studio 6.0.6. The compressor aps won't load. I get a compressor not loaded properly pop-up. I have loaded twice and still no compressor.

    I'm running OSX 10.6.8. I have final cut studio 6.0.6. The compressor aps won't load. I get a compressor not loaded properly pop-up. I have tried reloading but still no compressor.

    Start by repairing permissions. Then remove Compressor using this utility:
    FCS Remover - Uninstall Final Cut Studio, Final Cut Pro, Motion, Compressor, Soundtrack Pro, Color, DVD Studio Pro, LiveType, Cinema Tools
    Then reinstall and try to load Compressor. If it fails, post the error statements here.
    Good luck

  • The App Store won't load on iPhone 4 (v.4.3.3),

    The App Store won't load on iPhone 4 (v.4.3.3), it actually opens and shows as if it's trying to load the applications but no result, it's not the internet problem, because Safari opens normal. Any solutions? Is there a way to update only App Store?
    Many thanks in advance

    Well i actually did restart the phone, and the App Store worked for some time, then suddenly stopped, and recently there seems to be a new problem, it doesn't connect properly to the wi-fi, though the laptop has perfect conncetion, i guess there is something wrong with the connection on the iPhone itself after all.

  • Help! I have been using Mountain Lion but Finder and the App Store won't load and keeps crashing even after reinstalling the OS. How do to fix it?

    Help please! I have been using Mountain Lion for a few weeks but Finder, System Prefferences and the App Store won't load and/or keep crashing even after reinstalling the OS. How do to fix it?
    Model Identifier:     MacBookPro8,1
    Processor Name:     Intel Core i7
    Processor Speed:     2.7 GHz
    Number of Processors:     1
    Total Number of Cores:     2
    L2 Cache (per Core):     256 KB
    L3 Cache:     4 MB
    Memory:     8 GB
    Boot ROM Version:     MBP81.0047.B27
    SMC Version (system):     1.68f99

    You need to check to make sure you are actually connected to the network.  Tap Settings > WiFi >and then tap the blue ">" next to the network name with checkmark.  You should see a complete set of IP address but if the router didn't issue you an IP address properly, you will see your touch IP address start with 169.x.  If this is the case, you are connected to the internal network but not to the web.
    First thing to do (while you are on that screen) is tap "Forget Network".  Then turn WiFi off.  Turn it back on and, if needed, tap Other and re-enter your network information.  If you continue to have problems, check with your IT department on Monday.
    In the meantime, your laptop and iTunes can be used to purchase apps and music.  Syncing them with your touch is a great way to get them installed while you are waiting for the answer on your WiFi problem.

  • Install disc won't load?

    I'm trying to re-install the OS on a MacBook Pro that i'm selling so as to erase all my data from it, however the Install Disc will not start up to run the Installer. I load it, press install, it says it has to Restart, i click ok and it then begins to restart but then just stops at a white screen. The disc drive goes quiet as well. I've tried just starting and holding C down as well. Same result.
    Just wondering if anyone knows a way around this? Or is it probably a dodgy disc? It seems to be fine until it tries to start up from the disc.

    Clean the disk with a very soft cloth and a bit of rubbing alcohol, polish.
    Hold c or option key with a wired keyboard with the disk in and rebooting the machine, it should work.
    The only time it won't work if it's the wrong disk for that computer, it's possible with 10.5 Apple may have updated the firmware so one can't boot off the 10.5 disks, boot off the 10.6 disk instead.
    Call Apple for replacement machine specific disks with the free iLife if 10.6 or later, if 10.5 or earlier, order the 10.6.3 retail disks at Apple, no free iLife.
    Use Disk Utility under the Utilities menu to Erase W/Zero (or 7x if your paranoid and willing to wait many hours) the entire drive before installing OS X.
    Once OS X is installed it will reboot to Welcome Video, just shutdown and it will stay like that.

  • HT4059 I have ipod software version 4.2.1, but the iBooks app won't load onto my ipod touch 8GB. Why?

    As it says, the iBooks app refuses to load, even though my iOS version should be high enough. Any suggestions?

    The current version of the iBooks app that is in the store requires iOS 5+. Unless you downloaded a previous version of the app when it was compatible with iOS 4.2.1 and you still have it somewhere (on your computer or on a backup) then you won't be able to install iBooks (only the current version of each app is in the store)

  • The Sims 3 won't install on my macbook pro?

    I bought the instant download for The Sims 3 from Orgin today. I had no problem downloading it, but now I cannot get it to install.
    I know my specs are okay but here they are just in case:
    Processor: 2.8 GHz Intel Core i7
    Memory: 4 GB 1333 MHz DDR3
    Graphics: Intel HD Graphics 3000 384 MB
    Software: Mac OS X Lion 10.7.5
    (mid 2011 model)
    I went to check my installer, thinking that was the issue. I verified and then repaired.
    What could be the cause of the sims 3 not installing? I have spent the past 6 hours and it wont get past file 3 of 889.

    Is it a Mac disk?  If not, it won't work unless you create a Windows partition, and install Windows through Boot Camp or an emulator like Parallels.

  • My restore discs won't load on a new computer

    I recently obtained a G4 933 with no operating system. I junked my 733 and am trying to use the restore discs from the 733 on the 933. I restart holding the c button down, the smiling mac shows up, the progress bar moves to the right for about a quarter of the way and then stops.
    I have tried to install os 9 using the os9 install disk and same result. Is the mac that smart knowing I am using it on a different machine or am I that dumb?
    I need os9 to load some software that requires 9 for the initial install (Photoshop 6 with upgrade to 7). HP Scanner. I am not using the 733 anymore and my software is legally bought by me.
    Any help is greatly appreciated.

    Hi Ymir;
    I have never used the Erase & Install yet. Besides being basically lazy, I have never felt the need to do all of that work.
    My feeling is the Erase & Install is the nuclear bomb method of upgrading and should be saved for those occasions when a nuclear bomb is called for and not any other time.
    I have always started out with an Upgrade. It is simple so I start there. My plan is to test and see if I need to do an Archive & Install to fix problems. So far my testing has never discovered any, so I have NOT had to use any of the stronger methods.
    As I say I like to take the easy way first and see what it is going to do for me. Why make life more difficult for yourself?
    Allan

  • The Sims Game won't start after latest OSX update?

    Hello
    Ive tried so many things but my problem just don't get fixed!
    Yesterday I updated my MacBook Air with the new OSX 10.8.4 Update, since then my Sims 3 is not working no more!
    I tried a lot of things from the view that Sims was the Problem, but since this Problem accured just after I updated my Mac System, I figured it has to do something with the new Apple Update!
    When I start my Sims all I see is a Black Screen, It wont react unless I end with cmd/esc.
    I tried a lot of things and it just won't help anything.
    I reinstalled the Sims and it just doesnt show any process.
    I would be so glad, if sb. could help me and know why my Sims Game is acting up so much, since the new Mac OSX update.
    Maybe the Sims and the new Update is not compatible with each other?
    Somebody help me please! Thank you very much!!!

    Boot into the Safe Mode and try to open it.
    Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    Also you might look here.
    http://forum.thesims3.com/jforum/posts/list/413974.page

  • The itunes store won't load on my computer

    The store won't load; it loads halfway and then the screen goes white. I can still get to my library but i can't access the store. I've updated to the latest itunes and I'm pretty sure my computer is up to date too ( i've run two system updates and restarted it).

    There are several things this could be. Make sure you are selecting iTunes Store, restart your computer, restart your modem, and check your security settings. I've seen that most times this issue is caused by security settings preventing your computer from connecting to the iTunes Store, or other servers.

  • HT1338 The latest OS7 won't load even though WiFi is enabled

    Apple is pushing an iOS update to my 5c, but it won't load. WiFi is on and working.

    You'd get more knowledgeable answers if you post in the iPhone or iOS forum - this is the Mac OS Mavericks forum (OS for computers).

  • My macbook pro says I am connected to the internet but won't load pages

    my macbook pro says I am connected to the internet with a strong signal but it won't load any pages.  The internet works fine on my iPhone and other computers so it must be an issue with my macbook.  Any suggestions??

    Change your router channel number.  Most times this works & is all you have to do. 
    See KB Articles:  http://support.apple.com/kb/HT1401 AirPort troubleshooting guide
    http://support.apple.com/kb/HT2712 Using network locations in Mac OS X
    ============================
    System Preferences>Network
    Click the Assist Me button.
    In the next window that pops up, click the Diagnostic button & do the necessary.
    Also, run the Airport Utility app which is located inside the Utilities folder.
    =====================
    If using Linsys router contact LinkSys Customer Support and/or post in their forums.
    If using Apple's Airport, please re-post over in one of the AirPort Forums.
     

Maybe you are looking for

  • Troca da função ENTER nos documentos de marketing

    Caros, boa noite. No pedido de compra ou venda, se apertamos o enter, o documento tentará fechar. Alguém sabe se podemos trocar a função do enter? Queria que ele pulasse de uma linha para outra. Obrigado.

  • Unable to open pdfs after downgrade from PS  CC 2014

    Greetings. Our office has several seats of Creative Cloud, and our workstations are all Macs.  When InDesign and Photoshop upgrades to version 2014 were released, I installed them on our computers; only to discover that the upgrade is not compatible

  • Problem refreshing Materialized View in SQL Developer

    I have a database schema with a Materialized View (MV) that updates a products table shown on a website. This schema was recently imported to an 11g database from 8i, but since this import I have been unable to refresh my schema’s Materialized View.

  • Xperia Z1 charging issues/ model number not listed in SUS

    Hi there. My Mothers Z1 (C6903) appears to be charging irregularly after being in for repairs for a broken screen.  For example it will not charge when powered on, expect on occasion when plugged into computer, and has a 50/50 basis of charging when

  • Balences Carry forward

    Hi, Here i am trying to Balance Carry forward for g.l accounts T.Code: f.16, Example: senio 1. some of the balances are nor carry forward. That balances r posted in next year.our fiscal Year is closed Dec, January we r posted some trans that can not