package breakout;
import java.awt.event.*;
import java.awt.*;
import cs101.io.*;				// Necessary  import statements
import cs101.awt.*;
import cs101.net.*;

//Main class for the ScrollArea
public class ScrollMain 
{

	public static void main(String [] args)//necessary starup method
	{
		
		TextArea ta= new TextArea();//creation of a new TextArea and ScrollArea
		ScrollArea sa=new ScrollArea( );
		Frame f = new Frame();//creation of a new Frame
		f.setSize(850, 700);
		f.setLocation(100, 70);
		f.add(sa);					//sets properties for the Frame. Adds and shows the frame. 
		f.show();
		sa.startScrolling();//declaration of startScrolling method
		
		
	}
	
}