Jan 6, 2005 #1 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?
How do i get a flash button within a flashmovie to tell director to go to a certain frame in the director movie?
Jan 12, 2005 #2 qazs Programmer Nov 11, 2002 78 SG Is your Director movie embedded in your flash or is it separate? Upvote 0 Downvote
Jan 14, 2005 #3 kennethkawamoto Technical User Nov 19, 2002 2,710 GB 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 http://www.materiaprima.co.uk Upvote 0 Downvote
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 http://www.materiaprima.co.uk