Movie Player
Movie Player makes a simple movie with control buttons from some still images. Movie Player is a Java applet and it is Free.
From: Randy Curtis
To: mail@sandiegometro.com
Cc: karencurtis@hotmail.com
Sent: Monday, June 07, 2004 8:47 PM
Subject: Will the real Karen Billings please stand up?
San Diego Metropolitan:
The article entitled Succeeding In A Man’s World has a sentence that reads Karen Billings was the original Sunbeam Bread model at the age of three. In fact, I married the original Sunbeam Bread Model in 1991. She was born in Coalinga, CA in 1950 and her maiden name is Karen Billings. The article also says that Karen Billings would like to travel more. Now, as Karen Curtis, she and I have traveled the world and have visited every continent.
Randy Curtis
How to install Movie player to your page.
- Prepare still images. it can be in JPG or GIF format.
- Save images as img1.gif, img2.gif ....
- Add APPLET tag and PARAM tags into your html files.
- Upload html files, image files, applet ("movie.class") into your directory.
- Get "movie.class" here.
Explanation of APPLET and PARAM tags
- <APPLET code="movie.class" width=161 height=222>
meaning : Start applet.
width : Add 2 to original image's width * zoom ratio.
Height : Add 18 to original image's height * zoom ratio.
- <PARAM name=nimgs value="10">
meaning : Select number of image files.
- <PARAM name=file value="./img">
meaning : Select image file name and its path. This is optional tag. Default = "./img"
- <PARAM name=type value="jpg">
meaning : Select image file type "gif" or "jpg". Default = "jpg"
- <PARAM name=zoom value="1">
meaning : Select zoom ratio. Default = "1"
- </APPLET>
meaning : End of APPLET tag.
Back