vote up 1 vote down star

I have created this applet, It moves mouse to 1000 pos on screen.It works as application but it does not work in applet. I have created signed applet but still it wont move mouse. What should i do to make my robot class work from browser .

import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Robot;
import java.awt.AWTException;
public class s extends Applet {
public  void paint(Graphics g){
	g.drawString("Test1", 10, 10);

}
	public void init(){
		try{
			  Robot robot = new Robot();
			  robot.mouseMove(1000,50);
			  System.out.println("code executes");
		}catch(Exception ex){

			 System.out.println("code failed");
		};

	}

}
flag

Are you getting an AWTException when you run the code? – Thomas Owens Aug 24 at 12:24
2  
Looking at this code there's something more important than my answer below: THIS IS NOT AN APPLET! java.sun.com/docs/books/… – Joachim Sauer Aug 24 at 12:26
thanks , i have updated it to applet. It works in applet viewer but not in browser – Sydney Aug 25 at 9:48

2 Answers

vote up 2 vote down check

Signing alone won't give your Applet any permissions. You need to grant the createRobot permission to your Applet.

Check the security tutorials for more details.

link|flag
vote up 0 vote down

I've checked the source-code from Robot. And I think you have to add in the constructor a ScreenDevice.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.