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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing string between two director movies

Status
Not open for further replies.

tonyngu

Programmer
Dec 17, 2000
15
MY
I have two Director movies. I want pass the string that I typed into the Field to another Field in the second director movie. Can I do that? How?
 
Hello tonyngu

You can use a global variable to pass values between your movies.

The code should someting like:

global typed_in_text

on some_handler

typed_in_text = member(field_in_movie_1).text

end

In the second movie it is:

global typed_in_text

on other_handler

member(field_in_movie_2).text = typed_in_text

end

hope this helps

have fun

dambo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top