Forum Moderators: open
The links on the HOME (index.html) page:
Print-Contact-Digital-->When clicking on Digital it is scripted as getURL ("alldigital.html") the other two links are within the swf file
So how do I get the home button on that page to link to say the print page which is at on a different scene in the home.swf file
Does it make sense?
The link to your home page would be formatted like:
htttp://www.example.com/index.php?scene=2
Then within index.php you'd call the .swf file something like this...
/flashmovie.swf?scene=<?php echo urlencode($scene)?>
Then within your flash movie you'll find you can reference a variable named 'scene' that you can use to jump to the scene in question.
It's been a while since I've done anything like that so those details might be a little off, but they'll be close and the bottom line is that it's possible with a little work.