Got some external classes, say MyClass.as
MyClass.as has a static variable called foo
So, ordinarily in other AS files I can call this with
MyClass.foo = bar;
However, this seems to be different in timeline scripts.
Every time I try this I get the reference with a static type error
1119: Access of possibly undefined property foo through a reference with static type flash.display:DisplayObjectContainer.
I've tried doing an import MyClass, etc... nothing seems to be firing.
Any tips?