Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link into Flash movie

Status
Not open for further replies.

jkelly2956

Programmer
Jul 31, 2002
37
US
I have a flash movie that I link to standard ASP pages. I want to look around on the asp and then link back to the scene on the flash movie without reloading. Is this possible?
 
You don't need to reload unless you close your browser. Its stored in the "Temporary Internet Files" of your computer when its loaded, and will stay there for a while.
 
The solution to what I was trying to do ... The movie was on the default.asp page. When I wanted to link to a certain frame in that movie I just added an ahref with a url like default.asp?goTo=90.
Then on the default.asp page(contains the flash) I added an oNLoad event to the body tag containing the following.

document.moviename.GotoFrame(<%=goTo%>);
document.moviename.Play();
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top