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.

Windows Software 5498 This topic was started by ,


data/avatar/default/avatar21.webp

3 Posts
Location -
Joined 2005-02-12
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

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar26.webp

690 Posts
Location -
Joined 2004-05-06
What kind of script? BATch script, Javascript, Java, VB, PHP, Perl?
 
More info please!
 

data/avatar/default/avatar26.webp

690 Posts
Location -
Joined 2004-05-06
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/