I'm building a pretty simple component in Flash and need to access my
a few things that sit on the application in Flex.
I'd like to pass an array from the Flash to Flex and would also like
to invoke my web service from the Flash as well. Can anyone lend a
hand in this? There must be a way to access the vars, arrays, etc.
from the Flex part of this.
Here's the basics....
addEventListener("click", clicker);
protected function clicker (event:Event):void {
//web service
ws2.GetGlobalRadarFullById.send();
//get's the date in a main movieClip in the Flash
trace((parent as MovieClip).dates);
}
Thanks,
Mark