Groups | Blog | Home
all groups > flash (macromedia) > january 2007 >

flash (macromedia) : How do you fade to a new page after X seconds


webmaster-liztapanes
1/27/2007 11:55:29 PM
I want a new page to fade in in place of the current page after so many seconds. Would I use Flash or ?. New to programming. Thanks
webmaster-liztapanes
1/28/2007 12:07:01 PM
crazyone
1/28/2007 2:10:11 PM
[quoted text, click to view]

X=10;
newurl="www.macromedia.com";
_root.onEnterFrame=function(){
if((getTimer()/1000)>X){
getURL(newurl,"_self");
_root.onEnterFrame=function(){}
}
crazyone
1/28/2007 2:31:51 PM
[quoted text, click to view]

Or like this:

X=10;
newurl="www.macromedia.com";
setInterval(getURL,X*1000,newurl,"_self");

--
WBR Stadnik Aleksey aka DoctorSTaL.
[Team:Suck me, I'm famous]http://infostore.org/info/941736/suck.swf
urami_
1/28/2007 3:28:45 PM


[quoted text, click to view]

Page as Html document (new page) or flash frame to frame or movie clip ?

--
Best Regards

Urami


--

!!!!!!! Merry Christmas !!!!!!!
&
Happy New Year


<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
urami_
1/28/2007 9:09:20 PM


[quoted text, click to view]

You can't do it with flash. That's html and for that you will need to
use Java script. There are online Page Cross Fade scripts, look it up.
Tho I can't tell how flash will behave once in such. I only have seen
that done on regular HTML page.

--
Best Regards

Urami


--

!!!!!!! Merry Christmas !!!!!!!
&
Happy New Year


<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
webmaster-liztapanes
1/28/2007 11:39:17 PM
AddThis Social Bookmark Button