PDA

View Full Version : There's a way to know that?


turb
12-15-2003, 02:20 PM
I need to know when a html page, generate by php will be full loaded and then, start playing a swf animation that's inside this page??

tg
12-15-2003, 02:54 PM
the onLoad() event of the body tag fires once the page is done loading... so you could set it up so that that event executes a javascript function to start your flash file.

turb
12-15-2003, 03:00 PM
Thanx tg!

but is there another way while using javascript??

Stimpson
12-16-2003, 05:24 AM
but is there another way while using javascript??tg was talking about javascript ;). There is a onLoad event which fires if your html page has loaded, and which you can tie to a javascript function. Remember Javascript and Actionscript are not so very much different (Will make it that much easier;)).

turb
12-16-2003, 10:57 AM
thank... i'll take a look