script
This is a discussion about script in the Windows Software category; im creating a scipt in notebook. how do i get it to run on a web page¿ note:this web page isnt mine and the script is for chatting so people cant flood me with an exceptionally large amount of charecters.
im creating a scipt in notebook. how do i get it to run on a web page¿ note:this web page isnt mine and the script is for chatting so people cant flood me with an exceptionally large amount of charecters
Participate in our website and join the conversation
This subject has been archived. New comments and votes cannot be submitted.
Feb 12
Feb 13
0
1 minute
Responses to this topic
What kind of script? BATch script, Javascript, Java, VB, PHP, Perl?
More info please!
More info please!
OP
java
If its a Java script, you need to compile it to create a .class file using JAVAC compiler (use the SDK to create it).
To include the file on a web page, insert the following code in the BODY of your HTML page:
<APPLET CODE="myjavaprog.class" WIDTH=600 HEIGHT=100>
</APPLET>
which will launch your java program.
More info at http://www.prefect.com/java21/
To include the file on a web page, insert the following code in the BODY of your HTML page:
<APPLET CODE="myjavaprog.class" WIDTH=600 HEIGHT=100>
</APPLET>
which will launch your java program.
More info at http://www.prefect.com/java21/