tags to your page accordingly as well. Make sure the "ID" attribute inside each of these
is defined with the unique chip name of the flying image (ie: chip1).
3) Finally, you need to make a small change to the code of Step 4. Let's say I'm animating two images. The code after the change would be:
onLoad="pagestart();" onUnload="if(brOK) {stopme('chip1'); stopme('chip2');}"
Notice how I called the stopme() function two times, each with the ID of the two images used as it's parameter. If I were animating four images, the code would look like the following instead:
onLoad="pagestart();" onUnload="if(brOK) {stopme('chip1'); stopme('chip2');stopme('chip3');stopme('chip4');}"
That's all there is to it. The instructions may look long, but luckily, it shouldn't take you long to figure out exactly how to configure this great script to your liking!
--------->