|
The Custom Branding example uses the standard HTML <param>
feature to direct the MySpeed applet to load a gif file.
Applet Syntax:
<applet MAYSCRIPT name="myspeed"
code="myspeed.class" archive="myspeed.jar" width=600 height=400>
<param name="backgroundoverlay" value="companylogo.gif">
</applet>
Explanation:
1. Using the standard HTML feature <param> the
example sets the MySpeed parameter 'backgroundoverlay'
to load a standard 'gif' file. The value settings define the gif file title assigned
which instructs the applet to load the gif file. Because gif files support
transparency the user can control which part of the gif is visible and where..
Although this option is being used to
change the look and feel of the Speed and Quality test in this example this
<param> technique can be used to assign any
number of MySpeed test options. For example the Speed test results can
generate an email for emailing to the service provider. Click the link below to see more options.
What other <param> options does MySpeed
support?
|