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.

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 in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Feb 12
Created
Feb 13
Last Response
0
Likes
1 minute
Read Time
User User
Users

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/