Page 1 of 1

two new sites

Posted: Sat 18. Jun 2005, 04:27
by Fulvio Romanin
...but here they are:
http://www.rototomsunsplash.com
once again, sunsplash's back in town with the new version. 5 languages, main page using my "poor man's multilanguage" v2.0 (yet unreleased) changing the text just on flag rollover, more than 500 pages of info and stuff, park map made in flash - 5 levels of parallax, background image and flash menu changing according to the hour (night pictures by night, day pictures by day), flash-shown news below (courtesy of jsw_nz!), dynamically (pre)loaded flash banners and blah, blah blah... ;)
(news are pretty empty atm, and maybe images look too big - this layout was thought without multilanguage - soon it will be better...)

http://www.fieradellamusica.it
same thing more or less, just a combustion-made animation on the header.

and soon - more fcms stuff! ;)

Posted: Wed 22. Jun 2005, 15:36
by micael
Hi Fulvio,

rototomsunsplash is nice.
The header play the "introduction" each time (with the motion).
It'll be cool to play it only the first time.

You may use shared object (flash cookies) or something like this:

first frame (or before the loading bar):

Code: Select all

_root.tim= getTimer();
second frame (or after the loading bar):

Code: Select all

if (download time of your header, for example 800<_root.tim) {
	play();
//we'll see the introduction
} else {
	gotoAndPlay("fin");
//we'll go directly to the end (no introduction with motion)
}
cheers