Hi all! Well I’ve been working on this for a couple of days now and just can’t seem to get it to work right… I’m still getting my feet wet with as3 and like it more and more everytime I use it… almost.
Anyways, here’s where I’m running into trouble.
Here’s a dumbed down version of my project with all the other usless drivel excluded. Basically what I’m trying to do is declare a var and give it a value in my class. Then I want to be able to display that value on the stage and use it in the main timeline. Seems simple enough…
I need to be able to pass the var from the class to the main timeline for use… Any help on this would be GREATLY appreciated.
Thanks.
//Actionscript code on first frame of main timeline
//Imports my class... works fine.
import folder.testing.TestClass;
var testClass:TestClass = new TestClass();
//Class Code
package folder.testing {
public class TestClass {
public var someNumber:Number;
public function TestClass() {
trace("test class working");
someNumber = "1234";
trace(someNumber);
}
}
}