Oct 25, 2004 #1 law78 Technical User Apr 23, 2004 78 GB Can I get the value of a variable that is located on a different timeline?
Oct 25, 2004 #2 CorrieLee Programmer Oct 13, 2004 18 CA Hi law78, You can access the value of a variable from a different timeline as long as it is *earlier* in the timeline. Corrie. Upvote 0 Downvote
Hi law78, You can access the value of a variable from a different timeline as long as it is *earlier* in the timeline. Corrie.
Oct 25, 2004 #3 oldnewbie Technical User Dec 6, 2000 9,142 CA If you make it global to start with you can set or trace it from any timeline, even when the movie in which it was defined, is unloaded... _global.my_var = value; Set or trace it from anywhere... _global.my_var = new value; trace(_global.my_var); Upvote 0 Downvote
If you make it global to start with you can set or trace it from any timeline, even when the movie in which it was defined, is unloaded... _global.my_var = value; Set or trace it from anywhere... _global.my_var = new value; trace(_global.my_var);
Oct 26, 2004 Thread starter #4 law78 Technical User Apr 23, 2004 78 GB Thanks, not sure what I was doing wrong Upvote 0 Downvote