import greenfoot.*;
import javax.swing.JOptionPane;
/**
* Ramya Raja
*/
public class SecondPageButton extends Actor
{
public void act()
{
Remove2ndButton();
CreateUserInput();
}
public void Remove2ndButton()
{
if(Greenfoot.mouseClicked(this)){
World Page2;
Page2 = getWorld();
Page2.removeObject(this);
return;
}
}
public void CreateUserInput()
{
if(Greenfoot.mouseClicked(this)){
String inputValue = JOptionPane.showInputDialog("Type an episode number or title (Ex:Season 1 Episode 12 or Malec)");
}
}
public void Text()
{
if(inputValue = "Malec")
/**
* Code for Displaying an image
*/

