Add this variable to moveobj.js near the top (addition red):
Code:
var vmin=2;
var vmax=5;
var vr=2;
var timer1;
var stop=0;
Add this to the movechip(chipname) function in moveobj.js (additions red):
Code:
function movechip(chipname){
if (document.getElementById){
if (stop){
document.getElementById(chipname).style.display='none'
return;
}
eval("chip="+chipname);
Use this for your image(s) in the html section on the page itself (from the example code, modify as needed, additions/changes red):
Code:
<div id="flyimage1" style="position:absolute; left: -500px; width:47; height:68;">
<a href="#" onclick="stop=1;return false;"><img src="test.gif" border=0></a></div>
Bookmarks