Jump to content
Compatible Support Forums
Sign in to follow this  
oxmilkmanxo

script

Recommended Posts

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

Share this post


Link to post

What kind of script? BATch script, Javascript, Java, VB, PHP, Perl?

 

More info please!

 

Share this post


Link to post

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/

 

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×