WM Starscroll (Parameters)

[home] [code generator] [parameters]

Parameters description and code example for the applet WM Starscroll.


Applet dimensions:
width
Its the width of the applet window (must be a positive non zero value)
height
Its the height of the applet window (must be a positive non zero value)

WM Starscroll Parameters:
bgimg
Its the filename of the applet background image (must be a .jpg or .gif file)
fgimg
Its the filename of the applet foreground image (must be a .jpg or .gif file)
fgimgx Its the X position of the foreground image in the applet window
fgimgy Its the Y position of the foreground image in the applet window
starscrolllines They are the 3D text lines of the starscroll effect (each line must be separated by "|", not all the characters are supported)
starscrollsp Its the 3D starscroll text speed (must be a value between 1 and 60)

starscrollzoom

Its the 3D starscroll text zoom factor (must be a value between 1 and 10)
starscrollangle Its the 3D starscroll text rotation angle along the Y axis (must be a value between 1 and 90)
starscrollpos Its the 3D starscroll text position (must be 0 for left, 1 for center or 2 for right)
starscrollcolw Its the outline color of the starscroll 3D text (RRGGBB hexadecimal values)
starscrollcolf Its the fill color of the starscroll 3D text (RRGGBB hexadecimal values)
starscrollcols Its the shadow color of the starscroll 3D text (RRGGBB hexadecimal values)
starscrollwire If its 1 the starscroll 3D text will be displayed with an outline, if its 0 the starscroll 3D text will be displayed without an outline
starscrollfill If its 1 the starscroll 3D text will be filled, if its 0 the starscroll 3D text will not be filled
starscrollshad If its 1 in the starscroll 3D text will be appear a shadow, if its 0 in the starscroll 3D text will not be appear a shadow

General parameters:
scrolltext
Its the text that scroll in the applet
scrolltextdir Its the direction of the scroll text (must be 1 for left to right scroll, 0 for right to left scroll)
scrolltextsp Its the speed of the scroll text (must be a a value between 1 and 5)
scrolltextpos Its the Y position of the scroll text
scrolltextcol Its the color of the applet scroll text (RRGGBB hexadecimal values)
scrolltextfont Its the font of the scroll text (must be 0 for times, 1 for arial or 2 for courier)
scrolltexth Its the height of the scroll text characters (must be a positive non zero value)
bottomtext Its the bottom text in the applet window
bottomtextcol Its the color of the bottom text in the applet window (RRGGBB hexadecimal values)
bottomtextalign Its the position of the bottom text in the applet window (must be 0 left, 1 center or 2 right)
urltolink Its the address of the web page linked by the applet window (must begin with http://)
urltarget Its the target of the url in the urltolink parameter, if its _self the url will be show on the same window, if its _blank the url will be show in a new window, if its _parent the url will be show in the parent window, if its _top the url will be show in the top window, if its a custom value the url will be show in a frame with the custom value name (all the values are case sensitive)
After all the parameters you can insert a message for no java browser.
The parameter code must be the name of the main .class applet file, the codebase parameter must be"./".

Code example:
<applet code="WM_Starscroll.class" codebase="./" width="320" height="200">
   <param name="bgimg" value="image.gif">
   <param name="fgimg" value="wm.gif">
   <param name="fgimgx" value="2">
   <param name="fgimgy" value="2">
   <param name="starscrolllines" value="WEBMATIC|STARSCROLL| |WWW.VALARSOFT.COM| |W|W|W|.|V|A|L|A|R|S|O|F|T|.|C|O|M">
   <param name="starscrollsp" value="10">
   <param name="starscrollzoom" value="2">
   <param name="starscrollangle" value="50">
   <param name="starscrollpos" value="1">
   <param name="starscrollcolf" value="FFFFFF">
   <param name="starscrollcolw" value="1DAAAA">
   <param name="starscrollcols" value="AAAAAA">
   <param name="starscrollfill" value="1">
   <param name="starscrollwire" value="1">
   <param name="starscrollshad" value="0">
   <param name="scrolltext" value="http://www.valarsoft.com">
   <param name="scrolltextdir" value="0">
   <param name="scrolltextsp" value="1">
   <param name="scrolltextpos" value="100">
   <param name="scrolltextcol" value="00FF00">
   <param name="scrolltextfont" value="0">
   <param name="scrolltexth" value="36">
   <param name="bottomtext" value="Webmatic Starscroll">
   <param name="bottomtextcol" value="FFFFFF">
   <param name="bottomtextalign" value="0">
   <param name="urltolink" value="http://www.valarsoft.com">
   <param name="urltarget" value="_blank">
   <B>Sorry, this browser don't support java</B>
</applet>

[home] [code generator] [parameters]