So i was going to make it so when you a image, it will ask you for you name then say "hello" + Name.
I dont know how i would do this. any help plz?
Here is the code.
import greenfoot.*;
import javax.swing.*;
public class Joker extends Object
{
public void act()
{
if (Greenfoot.mouseClicked(this))
{
String inputValue = JOptionPane.showInputDialog("What is your name?");
JOptionPane.showMessageDialog(null,"hello " + Name);
}
}
int Name;
}

