diff options
author | endolf <[email protected]> | 2009-03-22 21:27:59 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2009-03-22 21:27:59 +0000 |
commit | c5d3407b0e62a1f391f212e314a4624d6b5a5064 (patch) | |
tree | 0af2fdcb7e0e1fbca3c08239b43e8a1aa9851be1 | |
parent | 3e54c24681e8b639e0754314a403b91958d206ec (diff) |
*** empty log message ***
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@217 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r-- | applet/build.xml | 1 | ||||
-rw-r--r-- | applet/jinput-event.html | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/applet/build.xml b/applet/build.xml index 3f0416d..f1dd330 100644 --- a/applet/build.xml +++ b/applet/build.xml @@ -30,6 +30,7 @@ <copy todir="dist"> <fileset dir="../webstart/dist/"/> <fileset file="jinput.html"/> + <fileset file="jinput-event.html"/> </copy> </target> diff --git a/applet/jinput-event.html b/applet/jinput-event.html new file mode 100644 index 0000000..1e207bf --- /dev/null +++ b/applet/jinput-event.html @@ -0,0 +1,18 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <meta http-equiv="content-language" content="en"> + <title>JInput Applet Test</title> + <script src="http://java.com/js/deployJava.js"></script> + </head> + <body> + <script> + deployJava.setInstallerType('kernel'); + // include any required packages as shown below + deployJava.setAdditionalPackages('javax.swing, javax.xml'); + deployJava.runApplet({codebase:".", + archive:"jinput.jar,jinput-test.jar,jinput-applet-test.jar", code:"net.java.games.input.applet.test.ControllerEventTestApplet", + width:"320", Height:"400"}, null, "1.4.2"); + </script> + </body> +</html>
\ No newline at end of file |