Web Development HTML Guide - Learn HTML
Developer Tutorials
ASP
CGI & Perl
CSS
Flash
HTML
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML



Developer Manuals
Learn HTML
Learn PHP
Learn MySQL
Learn CSS
Learn Pear


Developer Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Developer Resources
Developer Tools
Developer News
Developer Forums
Developer Content
Developer Book Reviews
Survey Software

Web Hosting Directory
Budget Web Hosting
ColdFusion Hosting
Dedicated Servers
Domain Hosting
E-Commerce Hosting
Email Hosting
Free Web Hosting
Linux Web Hosting
Managed Hosting
Reseller Hosting
Small Business Hosting
Windows Web Hosting

Attribute for <APPLET ...>
NAME = "text string"

NAME gives the applet a unique name. NAME is mostly useful is you want to use JavaScript to control the applet in some way.

For example, the My Applet applet allows you to set the text of the applet with its setText() method. The following code creates an applet with the name MyApplet. The code then creates a text field where you can type some text, then a button that calls the applet's setText() method. The button calls setText() by using the name set in the <APPLET ...> tag:

<APPLET 
     CODE="MyApplet.class"
     HEIGHT=75 WIDTH=300 
     NAME="MyApplet">
<PARAM NAME=TEXT VALUE="type something in the field">
</APPLET>

<FORM>
<INPUT NAME="settext"> 
<INPUT 
  TYPE=BUTTON VALUE="set applet text" 
  onClick="document.applets['MyApplet'].setText(this.form.elements['settext'].value)">
</FORM>

which gives us this applet and form:


Copyright Idocs, Inc. Written by Miko Sullivan











About the NetVisits, Inc Network | Advertise
Developer Tutorials hosted by HostGator.
Copyright ©2007 NetVisits, Inc Network. All Rights Reserved. Privacy Policy.
Visit other NetVisits, Inc. sites: