How can I save Java games for offline play?
September 14, 2004 12:38 PM   Subscribe

You know those fun little addicting Java games on the web? Is there any way to snatch them out of whatever buffer they reside in, and save them to your hard drive for future offline play?
posted by mecran01 to Computers & Internet (3 answers total) 1 user marked this as a favorite
 
Here's how I do it:

java: view source, search for "applet code" (or ".class") and look for a .class file near it. save the source in your preferred directory. load the .class file from your browser address bar and save it to the same directory. run the copy of the source to play it.

flash: view source, search for "embed" (or ".swf") and look for a .swf file near it. load it from your browser address bar and save it. it will play in any web browser offline.

This doesn't work with some games (like popcap games).
posted by donth at 1:06 PM on September 14, 2004


Response by poster: Wow thanks!
posted by mecran01 at 3:38 PM on September 14, 2004


It won't work for any resource files it also tries to load - e.g. if it downloads it's images seperately, you won't be able to play offline
posted by BigCalm at 2:36 AM on September 15, 2004


« Older Recommend an XP messenger client   |   Driver problems with a CD burner Newer »
This thread is closed to new comments.