80,032 reputation
437100
bio website pscode.org
location Sydney, Australia
age 48
visits member for 2 years, 9 months
seen 17 mins ago
stats profile views 12,951

Webmaster of the pscode.org Java help site. Author of:

See athompson.info for further details on me, as well as my Science & Technology site and DrewTubeish Tube Channel. Also seen at LinkedIn, Softpedia & Facebook.

At StackExchange

Completed the Java Web Start, JNLP, Applet & Java Sound tag information pages. Asked the How to create screenshots? FAQ & wrote the Why CS teachers should stop teaching Java applets blog post.


1h
comment Working with multiple Classes. Program won't launch
Glad you got it sorted. :)
2h
answered Working with multiple Classes. Program won't launch
2h
revised Working with multiple Classes. Program won't launch
deleted 161 characters in body; edited title
6h
comment Cannot Find getWindow(Applet) in netscape.javascript.JSObject
"to write and compile" Right. Silly me. :P Sorry, don't know much about DrJAva and setting the Compile time class-path in it. Does it run Ant build files?
6h
comment Do java applets have to be signed with trusted cert authority with new v7 update 21?
I saw recently that Comodo goes 'as low as' $180 per year, if you consider that low (I don't).
6h
revised Secure Java to MySQL database methods for sandbox applets
edited tags
6h
comment Secure Java to MySQL database methods for sandbox applets
The point is, the JDBC should be done on the server (e.g. in a servlet), then the applet contact the servlet for access to the DB.
7h
comment Silently print in the web page
"All, I am trying to look for some solution to print the data in the webpage silently" That's a great way to dump 12000 pages of coupons for Viagra to the company printer. :)
9h
comment Error when running applet with Slick2D
"Most tutorials I've read say to just write it like a normal application." In that case. abandon the applet. For deploying Java desktop apps., the best option is usually to launch the app. from a link using Java Web Start. JWS works on Windows, OS X & *nix.
10h
revised Clear Java cache without control panel
deleted 7 characters in body; edited tags; edited title
10h
revised Cannot Find getWindow(Applet) in netscape.javascript.JSObject
edited tags
11h
revised How can I set the size of this GUI?
added 21 characters in body
11h
comment Cannot Find getWindow(Applet) in netscape.javascript.JSObject
"I'm using DrJava" ..to run the applet? How are you testing it? AFAIU no (development) environment short of a 'browser' will have the functionality of the JSObject.
12h
comment How set location of an image in a JFrame
"I never advocated doing that" The words "This works for me:" read to me like you are advocating it. Maybe it is just me. Tip: Add @MadProgrammer (or whoever, the @ is important) to notify them of a new comment.
12h
revised How can I set the size of this GUI?
added 21 characters in body
12h
comment How set location of an image in a JFrame
"This works for me:" setLayout(null); Why just develop for you? This will probably break on the next machine, PLAF, .. -1
12h
comment How set location of an image in a JFrame
..See this answer for a demo.
12h
comment Hiding message in JPG image
"can't access the paper, we can sort this out privately." That answer was great, until that point. The linked paper is <$40 to buy.
12h
revised How set location of an image in a JFrame
edited tags
12h
comment How set location of an image in a JFrame
Java GUIs might have to work on a number of platforms, on different screen resolutions & using different PLAFs. As such they are not conducive to exact placement of components. For a robust GUI, instead use layout managers, or combinations of them, along with layout padding & borders for white space, to organize the components.