|
How do I change the text color? Use the text_color_front and text_color_back parameters to change the color of the orbiting text. How do I change the font? You cannot change the font in Orbiter. However, I have written an upgrade to Orbiter, called Orbiter2 which can display any font you like. Can I change the angle and speed of the orbit? Use the dip and tilt parameters to control the angle of the orbit. Use the rpm parameter to change the speed of the orbit. Can change the height of the letters? You can make the letters smaller by increasing the length of the string. Lengthen the string by adding spaces or repeating your message. You can make the letters smaller by shortening the string. Can I put an image in orbit? Orbiter only allows you to use text in orbit. However, I have written an upgrade to Orbiter, called Orbiter2 which allows you to orbit images. Netscape 4 won't run Orbiter from my local drive. Netscape 4 does not allow Java applets to read image files from your local disk drive. Since Orbiter usually needs a background and/or a planet graphic, Netscape 4 will not run this applet properly from your local drive, but it will run just fine over the Internet. Upload the files to a test page on your web site and run it from there; or better yet, use Microsoft Internet Explorer. Why can't I see my planet image in Netscape? All versions of Netscape Java have a bug in handling images with transparent holes. Netscape Java works fine with images that are transparent at the edges and opaque in the middle (like the graphic of Earth). However, Netscape Java will not handle images where the transparent areas are surrounded by opaque pixels (like the hole in a doughnut). If you expect your page to be viewable in Netscape, stay away from this type of image. This is just one more reason to use Microsoft Internet Explorer. |
|
background
This parameter specifies an image to be used for the background of the applet window. If the image is too small to fill the window, it will be tiled to fit. If no image is specified, the background will be the color specified in the bgcolor parameter. To set the background image to stars.gif: <PARAM NAME="background" VALUE="stars.gif"> bgcolor This parameter controls the background color of the applet window. The value consists of six hexadecimal digits; each successive pair of digits specifies the red, green, and blue color component, respectively. This parameter is ignored if a background image is specified. The default color is black. To set the background color to white: <PARAM NAME="bgcolor" VALUE="ffffff"> dip This parameter controls how far (in degrees) the "north pole" of the orbit is tipped toward the viewer. The default value is 10 degrees. See also: tilt. To set the dip angle to 45 degrees: <PARAM NAME="dip" VALUE="45"> planet This parameter specifies the image that the message will orbit. The image will be centered in the applet window. This image will typically be transparent at the edges, such as an image of the Earth. Due to a bug in Netscape Java, images with transparent holes should not be used. To set the planet image to earth.gif: <PARAM NAME="planet" VALUE="earth.gif"> rollover This parameter specifies a string to be displayed in the browser status window when the user moves the mouse over the Orbiter applet window. This parameter is typically used in conjunction with the URL parameter. To set the rollover string to "Enter my website!": <PARAM NAME="rollover" VALUE="Enter my website!"> rpm This parameter specifies the speed of the orbiting text, in revolutions per minute. The default value is 10. To set the speed to 6 rpm: <PARAM NAME="rpm" VALUE="6"> string This parameter specifies the text string to put in orbit. To set the string to "Welcome!": <PARAM NAME="string" VALUE="Welcome!"> target This parameter specifies a target frame to be used in conjunction with the URL parameter. This parameter is ignored if the URL parameter is omitted. Valid values for this parameter are: _self ..... show in the current frame (default value) _parent ..... show in the parent frame _top ..... show in the top-most frame _blank ..... show in a new unnamed top-level window name ..... show in a new top-level window named "name" To ensure that the new page is shown in a top-level frame: <PARAM NAME="target" VALUE="_top"> text_color_back This parameter controls the color of the back surface of the oribiting text. The value consists of six hexadecimal digits; each successive pair of digits specifies the red, green, and blue color component, respectively. The default color is red. If the value is "transparent", the back of the orbiting text will be invisible. To set the back text color to dark blue: <PARAM NAME="text_color_back" VALUE="000080"> text_color_front This parameter controls the color of the front surface of the oribiting text. The value consists of six hexadecimal digits; each successive pair of digits specifies the red, green, and blue color component, respectively. The default color is yellow. To set the front text color to green: <PARAM NAME="text_color_front" VALUE="00ff00"> tilt This parameter controls how far (in degrees) the "north pole" of the orbit is tilted left or right. Positive values tilt the "north pole" to the left. The default tilt is 10 degrees to the left. See also: dip. To tilt the "north pole" 30 degrees to the right: <PARAM NAME="tilt" VALUE="-30"> URL This parameter specifies a page to be shown when the user clicks on the Orbiter applet window. The URL parameter is often used in conjunction with the rollover and target parameters. To set the URL to "http://www.yahoo.com": <PARAM NAME="URL" VALUE="http://www.yahoo.com"> |