Specifies the name of a file whose contents will populate the document.
<PARAM NAME = "fileName" VALUE = "fName">
For example, if MyWP.html and MyDoc.xxx reside in the same directory, and you want to display the contents of MyDoc.xxx when the user opens MyWP.html, MyWP.html should look like this:
<HTML> <HEAD> <TITLE>WP fileName example</TITLE> <BODY> <APPLET NAME="MyWP" CODE="lotus.wp.WordProcessor" CODEBASE="..\.." ARCHIVE="jars/devpack_wp_app.jar" WIDTH=500 HEIGHT=450> <PARAM NAME="cabinets" VALUE="cabs/devpack_wp_app.cab"> <PARAM NAME = "fileName" VALUE = "MyDoc.xxx"> </APPLET> </BODY> </HTML>