This site requires JavaScript, please enable it in your browser!
Greenfoot back
minecraft15
minecraft15 wrote ...

2011/12/16

Message Box

minecraft15 minecraft15

2011/12/16

#
If anyone would like to share a greenfoor script for a button thay when clicked opens a message box containing a custom message? Or any tips on where to find/make one?
dordor dordor

2011/12/17

#
import javax.swing.JOptionPane and javax.swing.JInternalFrame. and put this code when you want to show the message:
JOptionPane.showMessageDialog(new JInternalFrame(), "Message content","Message title", JOptionPane.INFORMATION_MESSAGE);
replace "Message content" with the message, and "Message title" with the title of the message.
You need to login to post a reply.