Dec 17, 2000 #1 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?
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?
Dec 18, 2000 #2 dambo Programmer Aug 24, 2000 18 DE 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 Upvote 0 Downvote
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