script
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 on our website and join the conversation
This topic is archived. New comments cannot be posted and votes cannot be cast.
Responses to this topic
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/