Ok So I have MC named this1clip.
I am pulling the variable this1length from a text file via loadVariablesNum (“getmy.txt”, 0);
I know that this1length works is a valid variable as I can spit it out elsewhere, but for some reason the statement below is not pulling in the variable to set the width of the MC.
P.S. this1length has a value of 10 in my text file.
[AS]
onClipEvent (load) {
setProperty (_root.this1clip, _width, “_root.this1length”);
}
[/AS]
Any ideas? Are “” not needed? Do I refer to a different level than _root??