Working applet pacman needs to become class in bigger applet

But now I get freaky errors!!
I had pacman working as an applet then extended (another applet ) it, with working random action and change color buttons.
Everything fine but now I need 4 pacmen and thus the existing pacman applet needs to become a class !!!
I can't get it done, please help me !
I have this thus far...
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Autopacman extends Applet implements ActionListener
boolean Packleur1;
boolean Packleur2;
boolean Packleur3;
boolean Packleur4;
boolean Packleur5;
boolean Packleur6;
int klikken = 1;
public void init(){
pacmanPiet = new pacman();
Button kleur = new Button("Kleur veranderen");
kleur.addActionListener(this);
add( kleur );
public void paint(Graphics g){
g.setColor( Color.black);
g.drawLine( 0, 34, 600, 34 );
g.setColor( Color.yellow);
if( klikken == 1 )
{g.setColor(Color.yellow);}
if( klikken == 2 )
{g.setColor(Color.red);}
if( klikken == 3 )
{g.setColor(Color.blue);}
if( klikken == 4 )
{g.setColor(Color.black);}
if( klikken == 5 )
{g.setColor(Color.green);}
if( klikken == 6 )
{g.setColor(Color.white);}
g.draw(pacmanPiet); //teken de pacman voor het eerst
pacmanPiet.setWaardes( 200, 200, 50, 50, 5, 345 );
public void actionPerformed(ActionEvent e){
String str = e.getActionCommand();
if( str.equals("Kleur veranderen")){klikken++;}
if(klikken == 7)
{klikken = 1;}
if( str.equals("Random actie") ){       //Die stomme random functie
int i = (int)(Math.random() * 17);
switch(i){
case 1: case 7 : case 11: case 15 : str = "omlaag"; break;
case 2: case 8 : case 12: case 16 : str = "omhoog"; break;
case 3: case 9 : case 13: case 17 : str = "links"; break;
case 4: case 10 : case 14: case 0 :str = "rechts"; break;
case 5: str = "harder"; break;
case 6: str = "zachter"; break;}
if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
angleA = 185;
angleB = 345;}
if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
angleA = 5;
angleB = 345;}
if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
angleA = 95;
angleB = 345;}
if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
angleA = 275;
angleB = 345;}
if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
if( x > 550){ x = 550;}
if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
if( y > 550){ y = 550;}
repaint(); // zet de pacman opnieuw op het canvas
public class Pacman extends Applet implements ActionListener
int x = 200, y = 200; //beginpositie pacman
int width = 50, height = 50; //formaat pacman
int stap = 20; //standaard stapgrootte
int stapVerander = 10; //stapgrootte wijziging
int angleA = 5; //beginhoeken pacman
int angleB = 345;
public void init(){
Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
Button rechts = new Button("rechts");
Button omhoog = new Button("omhoog");
Button omlaag = new Button("omlaag");
Button harder = new Button("harder");
Button zachter = new Button("zachter");
links.addActionListener(this); //action events worden aan knoppen gekoppeld
rechts.addActionListener(this);
omhoog.addActionListener(this);
omlaag.addActionListener(this);
harder.addActionListener(this);
zachter.addActionListener(this);
add( links ); //knoppen worden op canvas gezet
add( rechts );
add( omhoog );
add( omlaag );
add( harder );
add( zachter );
public void paint(Graphics g){
g.tekenPac(this.x, this.y, this.width, this.height, this.angleA, this.angleB); //teken de pacman voor het eerst
void setWaardes ( int x, int y, int width, int height, int angleA, int angleB)
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.angleA = angleA;
this.angleB = angleB;
public void actionPerformed(ActionEvent e){
String str = e.getActionCommand();
if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
angleA = 185;
angleB = 345;}
if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
angleA = 5;
angleB = 345;}
if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
angleA = 95;
angleB = 345;}
if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
angleA = 275;
angleB = 345;}
if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
if( x > 550){ x = 550;}
if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
if( y > 550){ y = 550;}
repaint(); // zet de pacman opnieuw op het canvas

I get this error : Class or Interface expected .
I now have this ; please anyone?
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Autopacman extends Applet implements ActionListener
int x;
int y;
int width;
int height;
int angleA;
int angleB;
int stap;
boolean Packleur1;
boolean Packleur2;
boolean Packleur3;
boolean Packleur4;
boolean Packleur5;
boolean Packleur6;
Pacman pacmanPiet;
int klikken = 1;
public void init(){
pacmanPiet = new pacman();
Button kleur = new Button("Kleur veranderen");
kleur.addActionListener(this);
add( kleur );
public void paint(Graphics g){
g.setColor( Color.black);
g.drawLine( 0, 34, 600, 34 );
g.setColor( Color.yellow);
if( klikken == 1 )
{g.setColor(Color.yellow);}
if( klikken == 2 )
{g.setColor(Color.red);}
if( klikken == 3 )
{g.setColor(Color.blue);}
if( klikken == 4 )
{g.setColor(Color.black);}
if( klikken == 5 )
{g.setColor(Color.green);}
if( klikken == 6 )
{g.setColor(Color.white);}
g.draw(pacmanPiet); //teken de pacman voor het eerst
pacmanPiet.setWaardes( 200, 200, 50, 50, 5, 345 );
public void actionPerformed(ActionEvent e){
String str = e.getActionCommand();
if( str.equals("Kleur veranderen")){klikken++;}
if(klikken == 7)
{klikken = 1;}
if( str.equals("Random actie") ){       //Die stomme random functie
int i = (int)(Math.random() * 17);
switch(i){
case 1: case 7 : case 11: case 15 : str = "omlaag"; break;
case 2: case 8 : case 12: case 16 : str = "omhoog"; break;
case 3: case 9 : case 13: case 17 : str = "links"; break;
case 4: case 10 : case 14: case 0 :str = "rechts"; break;
case 5: str = "harder"; break;
case 6: str = "zachter"; break;}
if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
angleA = 185;
angleB = 345;}
if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
angleA = 5;
angleB = 345;}
if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
angleA = 95;
angleB = 345;}
if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
angleA = 275;
angleB = 345;}
if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
if( x > 550){ x = 550;}
if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
if( y > 550){ y = 550;}
repaint(); // zet de pacman opnieuw op het canvas
if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
angleA = 185;
angleB = 345;}
if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
angleA = 5;
angleB = 345;}
if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
angleA = 95;
angleB = 345;}
if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
angleA = 275;
angleB = 345;}
if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
if( x > 550){ x = 550;}
if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
if( y > 550){ y = 550;}
repaint(); // zet de pacman opnieuw op het canvas
public class Pacman extends Applet
int x = 200, y = 200; //beginpositie pacman
int width = 50, height = 50; //formaat pacman
int stap = 20; //standaard stapgrootte
int stapVerander = 10; //stapgrootte wijziging
int angleA = 5; //beginhoeken pacman
int angleB = 345;
public void paint(Graphics g){
g.tekenPac(this.x, this.y, this.width, this.height, this.angleA, this.angleB); //teken de pacman voor het eerst
void setWaardes ( int x, int y, int width, int height, int angleA, int angleB)
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.angleA = angleA;
this.angleB = angleB;
}

Similar Messages

  • Not working applets in win7 x64

    Hello,
    Maybe my problems comes from another programs in my computer, but most errors came/come from java (JRE), so I try to write a message here.... and hope to find a solution so that my applets will work. In the past periods I got a lot of script errors and watch at home only to a screen (white background with some text interchangeably) online it's really terrible for my eyes (as watching in the sun). And most program, flash-players not working online....pfff.
    I installed "jre-6u21-windows-i586-iftw-rv.exe" and restarted my PC, but again my computer did't show any applet, it makes me crazy. Again I got a 32-bit version on a 64-bits motherboard.....
    Java Plug-in 1.6.0_21
    Using JRE version 1.6.0_21-b07 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Administrator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.
    security: property package.access new value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access new value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.de
    ploy
    security: property package.access value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.de
    ploy
    security: property package.access new value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.de
    ploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.de
    ploy,com.sun.jnlp
    security: property package.access new value
    sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.de
    ploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value
    com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@1aaa14a
    network: Cache entry not found [url: http://www.java.com/jsp_utils/, version: null]
    network: Cache entry found [url: http://www.java.com/jsp_utils/jreCheck.class, version: null]
    prevalidated=false/0
    network: Connecting http://www.java.com/jsp_utils/jreCheck.class with proxy=DIRECT
    network: Connecting http://www.java.com:80/ with proxy=DIRECT
    network: Connecting http://www.java.com/jsp_utils/jreCheck.class with cookie
    "jreDcookie=85B46E7A60490AF35A248A871FD2C2DA; JSESSIONID=FB76292F658D40D283D2B8A0F67DD207;
    JROUTE=W2VMz2yu926eYGvP"
    network: ResponseCode for http://www.java.com/jsp_utils/jreCheck.class : 304
    network: Encoding for http://www.java.com/jsp_utils/jreCheck.class : null
    network: Disconnect connection to http://www.java.com/jsp_utils/jreCheck.class
    network: Cache entry not found [url: http://www.java.com/jsp_utils/, version: null]
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 337989 us, pluginInit dt
    615616 us, TotalTime: 953605 us
    basic: Applet initialized
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@1aaa14a
    basic: Applet made visible
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet started
    basic: Told clients applet is started
    basic: Starting applet teardown
    basic: Finished applet teardown
    During the opening of several sub-directories in the directorymap Java (1.6.0_20 + 21), I found it strange that some sub-maps were empty. In the sub-folders Java/jr6/lib/applet were no files and also not in the 'lib' subdirectory ../audio.
    I have search several times and downloaded several versions of Java and reinstalled them (because not working of it). I have read almost 100 pages for the correct solution, but without any result. I was searching in the folder to find information of the Java-applet or why their gone because. The Java controle on the website shows everytime "You have the last and right Java-version", but without working applets I cannot work well at my computer (offline and online).... it's a crime....pfff
    So please Help me!
    Under each message, e-mail or typed letter, I shall close with this signature and I can proudly say that since the year 2005 has become my lifestyle:
    ~ I'm open, honest and sincere to myself and others ...! ~

    .Re: Rear channels not working properly in Win7\ First go to control panel, and sound, and then speakers and then to configure, and then choose 5. for your speaker setup and be sure to not choose full range speakers. Then go back to speakers and choose properties, and then Levels, and try raising your rear speakers a bit louder than your front and center speakers. For me, this works best as rear speakers do not receive as much as front and center anyway. I have my front and center set at 55 so I set the rear to 65 or 70. Then they sound equal. I turn on CMSS-3d in console Launcher and I choose surround, and then stereo surround. I do not like stereo expand.
    If you have a sound source that is already 5., such as playing a 5. movie in VLC media player, the sound is already 5. so it is not "double-upmixed" per se.

  • [SOLVED]Pacman needs gcc-libs, that are already up to date

    ...but this is the output
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gcc: requires gcc-libs=4.7.0-3
    Pacman needs to update itself first, but needs gcc-libs...
    ...however...
    pacman -Ss gcc-libs
    core/gcc-libs 4.7.0-5 (base) [installed: 4.7.0-3]
    Runtime libraries shipped by GCC
    Granted, I could do this:
    pacman's --force
    but, how harmfull is that to my system?
    Thanks for a reply!
    Thor
    EDIT - searching the boards now...but I found some stale breadcrumbs...
    EDIT2 - upated pacman on its own...that seemd to work...
    pacman -S pacman
    the system is updating now...Solved
    EDIT3 - definetly solved, upgrading pacman on its own did the trick. The system is back after a reboot...thanks to everyone here
    Last edited by Thor@Flanders (2012-04-21 19:08:27)

    Hi everyone!
    @ Loafer
    Well, I did not refuse pacman to update...not updating one package could potentially bring down the depenging chain...so I let it update...
    @ Sara - I updated pacman on its own as detailed in the first post, then I did a sysup. the packages are in, and the update is running as we speak...
    I guess this could work for you too...good luck!
    Thor
    Last edited by Thor@Flanders (2012-04-21 19:02:21)

  • Where to start? Need help with classes

    My question involves those classes he wants us to make. I don't really get the concept of classes, so could someone tell me what they think he wants us to do? And try to explain it to me in terms I might be able to understand. Does that mean for us to use subclasses or use separate files for each class? Or could I do either? I'm so confused :(
    Assignment: Write a program that consists of the classes listed below.
    Player Class: The Player Class consists of at least two elements -- the player name and a list of scores for
    games. The score attribute is not used in Program #3 but will be needed in Program #4. Include in the
    class appropriate accessor and mutator methods for each element in the class. You may have other
    attributes if needed.
    Team Class: The Team class consists of at least 6 elements -- the name of the team and five players from
    the Player class. Include in the class appropriate accessor and mutator methods for each element in the
    class. You may have other attributes if needed.
    Course Syllabus Page 3
    Input3 class: The Input3 class is provided for you. The Input3 class supplies data for your program. The
    Input3 class has a public method called getNextString, which returns a string with the input for your
    program, one after the other. You must use this class to get the data for your program. See Input3.java on
    WebCT to understand the class construction.
    Your program should display the roster of each team in alphabetical order by last name.
    This is the Input3 that he gave us to work with if anyone needs to see it:
    public class Input3
         private String[] input = new String[40];
         private static int StringNum = -1;
         public static final int NUMBER_OF_TEAMS = 3;
         public static final int NUMBER_OF_PLAYERS = 5;
         public Input3()
              //The first six inputs will be for the first team
              input[0] = "LAKERS";
              input[1] = "Kobe Bryant";
              input[2] = "Derek Fisher";
              input[3] = "Shaquille O'Neal";     
              input[4] = "Karl Malone";
              input[5] = "Brian Cook";
              //The next six inputs will be for the second team
              input[6] = "MAVERICKS";
              input[7] = "Antoine Walker";
              input[8] = "Dirk Nowitzki";
              input[9] = "Tony Delk";
              input[10] = "Shawn Bradley";
              input[11] = "Travis Best";
              //The next six inputs will be for the third team
              input[12] = "KNICKS";
              input[13] = "Mike Sweetney";
              input[14] = "Allan Houston";
              input[15] = "Howard Eisley";
              input[16] = "Kurt Thomas";
              input[17] = "Shanon Anderson";
         //This method returns the strings one after the other.
         public String getNextString()
              StringNum++;
              return input[StringNum];
    }<br>
    <br>
    <br>
    Thanks

    You could put the classes in separate files, but it's not necessary. They wouldn't be called 'subclasses' here, as that word is specific to inheritance, which you don't need here. Here's an example of using multiple classes:
    public class MainClass {
        public static void main(String [] args) {
         OtherClass1 oc1 = new OtherClass1(3);
         OtherClass2 oc2 = new OtherClass2("hello");
         System.out.println("" + oc1.getInt());
         System.out.println(oc2.getString());
    class OtherClass1 {
        int someInt;
        public OtherClass1(int i) {
            someInt = i;
        public getInt() {
         return someInt;
    class OtherClass2 {
        String someString;
        public OtherClass2(String s) {
            someString = s;
        public getString() {
            return someString;
    }and like BDLH said above, it's preferred to put them in separate files. Just make sure the file name is EXACTLY the same as the class name, followed by .java

  • Javax.naming.NoInitialContextException: Need to specify class name...

    Hello,
    I am trying to use a Database Connection Pool.
    Here is the test class am using to verify the connection pool:
    public static void main(String[] args) { Connection connection = null; try { InitialContext initialContext = new InitialContext(); DataSource dataSource = (DataSource)initialContext.lookup("jdbc/<alias>"); connection= dataSource.getConnection(); } catch (SQLException e) { //   TODO Auto-generated catch block e.printStackTrace(); } catch (NamingException e) { //   TODO Auto-generated catch block e.printStackTrace(); } Statement stmt = null; try { String query = ""; stmt = connection.createStatement(); ResultSet resultSet = null; query = "SELECT <column> ...'"; resultSet = stmt.executeQuery(query); while(resultSet.next()){ System.out.println(resultSet.getString(<column>)); } stmt.close();   stmt = null; connection.close(); connection = null; } catch (SQLException e1) { // TODO Auto-generated catch block e1.printStackTrace(); }finally{ if (stmt != null) {   try {   stmt.close();   } catch (SQLException sqlex) {   // ignore -- as we can't do anything about it here   }   stmt = null;   }   if (connection != null) {   try { connection.close();   } catch (SQLException sqlex) {   // ignore -- as we can't do anything about it here   } connection = null;   } } }
    I get following exception..
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:640) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243) at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:280) at javax.naming.InitialContext.lookup(InitialContext.java:347) at com.internal.test.TestRun.main(TestRun.java:53) java.lang.NullPointerException at com.internal.test.TestRun.main(TestRun.java:66) Exception in thread "main"
    The exception points to
    DataSource dataSource = (DataSource)initialContext.lookup("jdbc/OrderStatus");
    Is this the correct way to test...?
    Thanks
    Srinivas

    java_2006 wrote:
    You can't access a jdbc pool like that (simply with a main method).
    The Database connection pool must be managed by a container (a servlet or application server) like tomcat.
    That is not entirely true but it certainly helps and is generally the only way it is used anyway so one might as well do it.

  • I have two apple accounts, but can only access one. I did all the steps to recover the older account's password but nothing worked. I need to access the older account to update apps. Also would there be a way to just combine both accounts?

    I have two apple accounts, but can only access one. I did all the steps to recover the older account's password but nothing worked. I need to access the older account to update apps. Also would there be a way to just combine both accounts?

    Were you able to reset the account's password ? If not then how did you try to get it reset e.g. http://iforgot.apple.com (which would have sent it to the rescue email address if you have one on that account) ? You can also try contacting iTunes Support in your country to get it reset : http://support.apple.com/kb/HT5699
    And no, accounts can't be merged nor content transferred between accounts.

  • I just purchased a MacBookPro after having a MacBook.  I have ILife, IWorks and Office for Mac.  How do I get those programs on to my MacBook Pro?  I will still use my MacBook at work so I need those programs to remain on it as well.

    I just purchased a MacBookPro after having a MacBook.  I have ILife, IWorks and Office for Mac.  How do I get those programs on to my MacBook Pro?  I will still use my MacBook at work so I need those programs to remain on it as well.

    You need a Firewire cable to run between the two Macs.  Using Utility>Migration Assistant running on your new MacBook Pro, transfer what you want (with all the preferences and such) from your MacBook to your MBP.  Here's more info from Apple.
    You might have an issue with the Serial number for Office, but hopefully you have that around.
    Hope this helps.

  • After installing Leopard, my G4 will no longer boot in OS 9.22. (Classic still works, but I need it to boot in OS 9.)  Any clues about what the Leopard installer might have done to my machine that rendered OS 9 boot unusable? What can I do to fix it?

    After installing Leopard, my G4 will no longer boot in OS 9.22.
    (Classic still works, but I need it to boot in OS 9.)
    Any clues about what the Leopard installer might have done to my machine that rendered OS 9 boot unusable? (And what can I do to fix it?)
    Details:
    G4 Gigabit Ethernet
    Boot ROM version: 4.2.8fl
    Accelerator card added: 1.6 MHz
    1.5 Gig Ram
    I have erased the partition that had Leopard installed on it.
    I zapped the pram.
    In Open Firmware, I "reset-nvram", and then "reset-all"
    I tried to reinstall G4 FW Update 4.2.8, but that must be done when booted from OS 9, and of course, that's the problem: it won't boot into 9.
    I tried restarting from 9.2.1 DVD.
    I tried restarting from an external firewire drive containing OS 9.2.2.
    I tried moving a fresh OS 9.2.2 system folder into an empty partition on an internal hard drive. (Partition was created WITH OS 9 drivers installed.)
    All attempts to boot into OS 9 give me the same results - grey screen - no spinning beach ball, no icons or logos - just a blank grey screen.
    This machine still works fine in OS 10.3 and 10.4, and it worked fine for many years booting into OS 9, until I installed Leopard, and I haven't been able to boot into OS 9 since then, although I have done considerable research online and tried many things.
    I have since learned that this machine does not support Leopard - 10.5. Fine, but how did it break 9.2.2?
    Any help greatly appreciated.

    Thanks for checking in, BDAQua.
    Problem solved.
    In the docs that came with my Powerlogix accelerator card, I found this sentence buried:
    "If you reset the PRAM, the NVRAM code for OS9 compatibility is cleared, so you will have to boot from the Firmawre Update CD and perform this process again in order to boot in OS9."
    The "process" it's referring to is the process of setting up the NVRAM for booting into OS9 from the CD.
    Fortunately, I was able to find the disk, and it worked as expected. I can now, once again boot into OS9.
    Conclusion: My (unadvised) attempt to load Leopard on this old machine apparently reset the PRAM on the accelerator card and cleared the NVRAM code for OS9 boot. Although I did attempt to reset the NVRAM via Open Firmware, it did not reset it on the accelerator card.
    So, thank you BDAQua, for your "Ah yes" . . . that's all I needed to steer me in the right direction.
    Gratefully,
    tupester

  • TA24002 My 500 GB can't verify nor repair. I have photoshop work that I need to recover. I would like to know which erase option would be the best solution for this problem.

    My 500 GB can't verify nor repair. I have photoshop work that I need to recover. I would like to know what option would be the best solution for this problem?

    You appear to have two issues: 1) a hard drive that is not working properly and 2) files you wish to recover.
    Re 1) you need to answer Kappy's questions.
    Re 2) does the drive load and can you see your photo files? If so can you copy them to another drive?
    Do you not have a backup of the photo files?

  • I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    Sorry to hear about this problem. What site are you trying to log in on? Is it a Mozilla site? Usually you don't need to register or sign in to a Mozilla site to use Firefox. Usually you can just go straight to where you want to go.

  • My securety code on my debit card is not working and I need to know why?

    my securety code on my debit card is not working and I need to know why?

    You need to contact iTunes support. We are users here just like you and would have no idea why it isn't working. At the bottom of the iTunes Store page in iTunes there is a contact link.

  • Can no longer access my itunes account because my riginal computer no longer works. Now need to access prepurchased apps to download on my Ipod since i had to reset it. I have a new laptop.

    Can no longer access my itunes account because my original computer no longer works. Now need to access prepurchased apps to download on my Ipod since i had to reset it. I have a new laptop.

    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not all media formats are available in all countries (see: iTunes in the Cloud, iTunes Match, and iTunes Radio availability by country - http://support.apple.com/kb/HT5085); apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Downloading previously purchased movies and TV shows requires iTunes 10.6 or later. Discontinued items not available. For items not included in the iCloud list (e.g., ringtones, audiobooks), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid. Apple recommends, "You always back up your iTunes library in the event that a purchased item is no longer available on the iTunes Store," (http://support.apple.com/kb/ht2519).
    You will be using your original AppleID and password.  that works for any computer you own now or in the future.  Do not make a new appleID.

  • Screen not working, says I need passcode to back up to PC and screen frozen

    Screen not working, stating I need a passcode to sync and back up to PC

    1st try the Restart and if need be try the reset
    Restart or reset your iPhone, iPad, or iPod touch
    https://support.apple.com/en-us/HT201559
    Best of Luck

  • How can i upgrade my iPhoto 7.1.5 to a newer version? the download 8.02 will not work as i need 8 and that isn't available on download on the site?

    How can i upgrade my iPhoto 7.1.5 to a newer version? the download 8.02 will not work as i need 8 and that isn't available on download on the site?
    Thanks x

    You can upgrade to iPhoto '11 with OS X 10.8.5 by purchasing an iPhoto '11 DVD from Amazon, eBay or other source - or you can upgrade your OS to Mavericks for free if your system meets the requirements and then purchase the upgrade to iPhoto '11 version 9.5.x from the App store - in either case backup first in case of problems
    LN

  • TS1559 hello guys i wanted to ask u about my ipad wifi is not turning on and i have tried to reset the network but still is not working please i need ur help

    hello guys i wanted to ask u about my ipad wifi is not turning on and i have tried to reset the network but still is not working please i need ur help

    Thank you. I will try your tip. And if it works, I'll give you 10 points . But now its been charging for hours and its still the same . But thank you!

Maybe you are looking for

  • Letter Sent To Corporate, Maybe a miscommunication about 3G service?

    First of all, I want to say that I do love my Droid X and I do love Verizon Service, that is if you're in a Verizon Service area.  If Verizon had a tower in my area, I would be more than satisifed. Here is the letter I sent, maybe this will be easier

  • SAP BPC 7.5 Netweaver - BI Transaction Data to BPC

    Hi, I have to add 0debit and 0credit in BI PCA cube to AMOUNT in BPC  using transformation file. Prefereably, want to use same data source(P_Datasrc) value and single transformation file. BI transformation is the last option to avoid any issues after

  • Curve 9320 et mail exchange

    Bonjour, Je suis nouvel utilisateur d'un BB Curve 9320 en version 7.1 et je n'arrive pas à configurer les mails sur le téléphone en effet lorsque j'essai de configurer mon compte, il me demande mon mail et mon mot de passe d'activation Quel est ce fa

  • I have a 1 Hour shoot with 3 cameras and I

    I have a 1 Hour shoot with 3 cameras and I need to make a dvd with chapters. What is my best work flow? 1. Do I edit the whole thing at once and then save to file using compressor? After that how do I burn a DVD with chapter marks? 2. Edit each secti

  • No install discs, how do I get X11 program?

    I was given an older but opperable PowerBook Mac OS X 10.4.11 recently. I have spent the last couple weeks getting to know it. I haven't used a mac in many decades. I purchased a program that requires X11 to run. I have no install discs so I tried to