cybernetic
Programmer
I have a movieclip called circle, which has a movieclip inside it called internal. I have loaded an external movie (Symbol4.swf) into circle.internal. Symbol4.swf has a textfield in it called text1. I need to be able to set this value, and have tried using the syntax:
But have had no luck setting the text within the embedded movie clip. I can set the value in the external swf file but i cant do this, as I am loading multiple instances of the same external file to the movie and the text for each instance will be different.
Is there any way to pass variables to the loaded clip using loadmovie itself? I knwo it says in the actionscript dictionary
where variables =get or post. However Im unsure which variables it posts, is is automatic or do you have to set up a loadvars object.
I would appreciate it if anyone could help me with this as soon as possible.
Thanks
Code:
_root.circle.internal.text1="test";
But have had no luck setting the text within the embedded movie clip. I can set the value in the external swf file but i cant do this, as I am loading multiple instances of the same external file to the movie and the text for each instance will be different.
Is there any way to pass variables to the loaded clip using loadmovie itself? I knwo it says in the actionscript dictionary
Code:
myMovieClip .loadMovie(" url " [, variables ])
where variables =get or post. However Im unsure which variables it posts, is is automatic or do you have to set up a loadvars object.
I would appreciate it if anyone could help me with this as soon as possible.
Thanks