Archive for December, 2007

Opening Office 2007 files in earlier Office versions

Thursday, December 6th, 2007

Office 2007 files can be opened in earlier versions of Office using the Microsoft Office Compatibility Pack.  Read this entry at Freeware Genius to find out how to do this.

Submitting Alice Assignments

Thursday, December 6th, 2007

I’ve heard from a lot of you that you’re having trouble emailing your Alice assignments to me because the attached files are getting blocked for being too large.  It’s especially been a problem for folks using Gmail, Hotmail, and Yahoo! Mail.
If this happens to you, you’ve got two options.  You can burn your final assignment [...]

How to turn a Java application into a Java Applet

Wednesday, December 5th, 2007

The application program needs to be GUI-based.

Import the classes java.awt.Graphics and javax.swing.JApplet.
Make the class for the program extend JApplet instead of JFrame.
Change the constructor method of the application to a method named init, that returns a void value.
Remove the setTitle( ), setSize( ), and setVisible( ) methods from the program.
Get rid of the main( ) [...]

Another Alice Tip

Monday, December 3rd, 2007

It’s worth poking around through the different objects to find out what they can do.  Not all objects are created equal.  For instance, if you use the he/she builder, they come with a walk method.  The penguin can walk, the cat can do a couple different functions, etc.  This may make programming more “real” animation [...]