Re: [Flashcoders] GetDefenitionByName from loaded SWF

2009-03-12 Thread Dave Watts
> 1)  What is a "mutator"? Generally, it's a method that changes a property of its object. The formal names for "getters" and "setters" are accessors and mutators. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruct

Re: [Flashcoders] GetDefenitionByName from loaded SWF

2009-03-12 Thread Taka Kojima
add a public static var instance:ParentClass to the ParentClass file... Then in the constructor, do instance = this; Then you should be able to access everything by doing ParentClass.instance.propertyName; - Taka On Thu, Mar 12, 2009 at 10:11 AM, Helmut Granda wrote: > Hello All, > I am trying

Re: [Flashcoders] GetDefenitionByName from loaded SWF

2009-03-12 Thread Patrick Matte
myloader.load(urlRequest, new LoaderContext(false, ApplicationDomain.currentDomain)); -- > From: Helmut Granda > Reply-To: Flash Coders List > Date: Thu, 12 Mar 2009 12:11:26 -0500 > To: Flashcoders mailing list > Subject: [Flashcoders] GetDefenitionByName from loaded SWF

RE: [Flashcoders] GetDefenitionByName from loaded SWF

2009-03-12 Thread Merrill, Jason
1) What is a "mutator"? 2) Why are the children being coupled to the parent? I would recommend using event bubbling - dispatch from the children, the parent listens for it and does what it needs to do. Have the parent push data to the child if necessary, and then the child can do what it nee

[Flashcoders] GetDefenitionByName from loaded SWF

2009-03-12 Thread Helmut Granda
Hello All, I am trying to access properties from a child file. This is the set up: >Parent >>loadedA.swf // gets loaded into Parent >>loadedB.swf // gets loaded into Parent Parent has a static class called "ParentClass" and it has about 10 mutators that I want to access through the child movies b