Link to home
Start Free TrialLog in
Avatar of phpretard
phpretard

asked on

1 item remaining on loading web page (same problem exactly)

Has anyone come up with a solution to this problem?
Avatar of Rob
Rob
Flag of Australia image

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
Avatar of phpretard
phpretard

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

Open in new window

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.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
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".
ASKER CERTIFIED SOLUTION
Avatar of Rob
Rob
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial