I have a problem which I distilled down to a short html code to demonstrate what is happening on a site I am working on. In this example, there is a player placed on the center of the page and a simple link above it and way below it. Scroll down to the lower link. The text link scrolls smoothly, but not the player. Why? Thanks. Doc
</style> <script type="text/javascript" src="swfobject.js"></script> <script type="text/javascript"> function createPlayer(thePlace, theFile, go) { var s = new SWFObject("mediaplayer.swf","thePlayerId","300","300","7");
s.addParam("allowfullscreen","true"); s.addVariable("file",theFile); s.addVariable("width","300"); s.addVariable("height","300"); s.addVariable("displayheight","280"); s.addVariable("showicons","false"); if (go) { s.addVariable("autostart","true"); } s.write(thePlace); } function init() { createPlayer('player', 'video_remember_this_1.flv', 'true'); } </script> </head> <body style="filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#FFFFFF', startColorstr='#C0CFE2', gradientType='0');"> <body onload="init()"> <DIV id="player"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a></DIV> <DIV class="TEST"><a href="test site">Here is a test message</a></DIV> <DIV class="TEST2"><a href="test site">Here is a test2 message</a></DIV> </body> </html>