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!

ACTIONSCRIPT AND DIRECTOR

Status
Not open for further replies.

kcred95

Technical User
Dec 16, 2004
2
US
How do i get a flash button within a flashmovie to tell director to go to a certain frame in the director movie?
 
Is your Director movie embedded in your flash or is it separate?
 
Use getURL("lingo:someLingo()") to execute a Lingo script in Director from embedded Flash movie.

The following ActionScript tells Director 10 to go to frame "boo":
//
on (press) {
lingoScript = "lingo:_movie.go(\"boo\")";
getURL(lingoScript);
}
//

Kenneth Kawamoto
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top