phpretard
asked on
1 item remaining on loading web page (same problem exactly)
Has anyone come up with a solution to this problem?
sounds like a path issue but it's hard to know unless you can post an example of the site or the part of the flash template that is loading the data
Flash CS3 comes with a javascript solution that stops the loading of the page. I advice you to try it out :)
Just publish the solution in CS3, which will generate a html-document and the corresponding .js-document :)
Kindly,
Samuel
Just publish the solution in CS3, which will generate a html-document and the corresponding .js-document :)
Kindly,
Samuel
ASKER
This is how the code is inserted:
// THE FLASH
<object classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000' id='obj1' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' border='0' width='739' height='170'>
<param name='movie' value='flash/$page.swf'>
<param name='quality' value='High'>
<embed src='flash/$page.swf' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' name='obj1' width='739' height='170' quality='High' wmode='transparent'>
</object>
<script src="thecode.js"></script>
// END THE FLASH
//THE CODE FROM ANOTHER PAGE
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
// END THE CODE
2 questions::
Are you only having the problem in firefox or does the problem happen only in IE?
What is the purpose of your javascript loop
objects = document.getElementsByTagN ame("objec t");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
Are you only having the problem in firefox or does the problem happen only in IE?
What is the purpose of your javascript loop
objects = document.getElementsByTagN
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
ASKER
I am not sure...
If I use the code the page never loads...
do know of a way to get rid of the "Click to Activate".
If I use the code the page never loads...
do know of a way to get rid of the "Click to Activate".
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.