Main.as document is the root. It calls my WebServices class (which just extends MovieClip).
public var ws:WebServices = new WebServices();
In that class, I try to access all the FlashVars past in to the root with this:
public var FlashVars:Object = LoaderInfo(this.root.loaderInfo).parameters;
Why does this not pull the FlashVars to my WebServices class? I've tried parent as well and modifications of this.
This is a class component I am making so any agency can work with our WS and I collect all the FlashVars for them and store them without them worrying about passing them each time.
I guess I'm not understanding the parent/child chains of command and restrictions very well.
Any help?
)))))