For more information E-mail: info@unlimited-tech.net
The following Parameters can be set by the user:
You can modify the size of the applet by changing the height and width.
cabbase - don't change this parameter
background - will allow you to change the background of the applet use
standard RGB (Red, Green, Blue) values separated by a comma. For example white = 255,255,255
ascbin - can be either "asc" or "bin", you can set the default file transfers
server - the host name or an IP address
port - Port number, usually the default FTP port is 21
pass - password
user - user login name
passive - true/false, will default to the passive or port connection
autoconnect - true/false, you ask the applet to automatically connect to a host, while the webpage is loading,
you will have to provide right server name and user ID and/or password to use this option.
remotedir - String, the applet will automatically cd to that directory on the FTP server.
display - either true or false, will allow you to either hide or show the sever messages display
buttonbackground - colour of the button.
buttonColorOnMouseOver - color of the button during a mouse over event.
buttonTextColor - color of the text located inside the button.
buttonTextColorOnMouseOver - color of the text in the button during a mouse over event.
RemoteOptions - true or false, will allow you to hide all the remote buttons options.
LocalOptions - true or false, will allow you to hide all local buttons options.
All the colors are specified in the RGB format.(Red Tone, Green
Tone, Blue Tone) 0 is the darkest and 255 is the lightest. For
example, white would be "255,255,255".
Here is an example on how to set those parameters using the APPLET tag:
<APPLET code=a height=430 width=600 archive="unlimitedftpdemo.jar" VIEWASTEXT id=Applet1>
<PARAM NAME="cabbase" VALUE="unlimitedftpdemo.cab">
<PARAM NAME="background" VALUE="255,255,255">
<PARAM NAME="ascbin" VALUE="asc">
<PARAM NAME="server" VALUE="www.myserver.com">
<PARAM NAME="remotedir" value="/home/smithm/myfiles">
<PARAM NAME="display" VALUE="true">
<PARAM NAME="debug" VALUE="true">
<PARAM NAME="port" VALUE="21">
<PARAM NAME="pass" VALUE="anypssword">
<PARAM NAME="user" VALUE="smithm">
<PARAM NAME="passive" VALUE="true">
<PARAM NAME="autoconnect" VALUE="false">
<PARAM NAME="buttonbackground" VALUE="50,160,150">
<PARAM NAME="buttonColorOnMouseOver" value="1,80,1">
<PARAM NAME="buttonTextColor" value="0,0,0">
<PARAM NAME="buttonTextColorOnMouseOver" value="255,255,255">
<PARAM NAME="RemoteOptions" value="true">
<PARAM NAME="LocalOptions" value="true">
</APPLET>