Hi,
I'm making a portfolio-style web and there is a Projects section in it. Each project has its own html and a button which links to a new html with a trailer.
Now, the new html with a trailer is basically the same for all the projects. It has a flash player embedded in it which has a different project video in each frame.
I've created a function in the trailer html which reads like this:
function reklam1()
{
var flashMovie=getFlashMovieObject("player");
flashMovie.GotoFrame(1);
}
Ok, so I want to make sure that if I click on a link in the projects html it will open this new trailer html and activate the desired function which will push the flash player into a corresponding frame.
How do I have to make the link to be able to do that?
Or is there any better way how to get the player to a desired frame on startup using javascript/html?
Bookmarks