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!

load movie question

Status
Not open for further replies.

othoap

Technical User
Nov 26, 2003
1
US
Hi

I’m trying to alter a script from a movie “Latta Menu System 1.5 Folder”. The author Jason Latta is unavailable.

The movie is a dynamic menu. Jason has made a “Set Variables Here” layer to add and rename links.
Here is a clip of the original code:

// How many menus do you want?
MainTopicTotal = "2";
SubTopic0Total = "2";
SubTopic1Total = "3";
// What are they Labeled?
// Note that each button has 2 variables: NAME, URL
MainTopic0 = "TOPIC1";
SubTopic0_0 = "label1";
SubTopic0_0url = "SubTopic0_1 = "label2";
SubTopic0_1url = "";
MainTopic1 = "TOPIC2";
SubTopic1_0 = "label1";
SubTopic1_0url = "";
SubTopic1_1 = "label2";
SubTopic1_1url = "";
SubTopic1_2 = "more labels...";
SubTopic1_2url = "";


Jason has a url for the link I would like to use a “loadmovie” My attempt was unsuccessful with this alterations:

//this would loadmovie at the preview of the swf.
SubTopic2_1 = "chair1";
SubTopic2_1url = loadMovie(“chair1.swf”, 1);

or

//this one would not fine the file.
SubTopic2_1 = "chair1";
SubTopic2_1url = “loadMovie(chair1.swf, 1)”;

could any one help me

thanks
sam@othoap.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top