We can tansfer variables to flash movie.
Something like this:
Code:
<EMBED src="/intro.swf?mode=1" .... etc>
We can make a first page, which loads the flash movie in php.
It will be like this:
Code:
$mode=intval($_GET["mode"]);
<EMBED src="/intro.swf<?php if ($mode) { echo "?mode=1"; ?>" .... etc>
So, if we load the site like this:
http://www.somesitename.none
there will be no variable transfered to Flash.
But if we load
http://www.somesitename.none/index.php?mode=1
The variable will be sent to Flash.
In the first frame of flash movie we put the actionscript code like this:
Code:
if (mode==1) {
GoToFrame(100);
}
With the desired frame number in place of 100.
Then we change internal links to homepage from pages like "Contat Us" to "/index.php?mode=1" or just "/?mode=1".
All this is my supposition, but probably it will work.