>> class to a layout). Because b1 cannot be "reused" for another
>> addChild(), how would you add the other buttons? TIA,

>It can't be ?

Yes, of course it can be reused, the type can't change. Which this is not
the case since you are suing Button for all 20 instances.

You can do;

b1 = new Button()
addChild(b1):

b1 = new Button()
addChild(b1):

b1 = new Button()
addChild(b1):

as many times as you want. It's getting the instances back that you need to
plan for.

As far as retrieving them, as Tom said, and array object hash, or
dictionary.

Mike

On Wed, Oct 22, 2008 at 6:10 AM, Tom Chiverton <[EMAIL PROTECTED]
> wrote:

> On Wednesday 22 Oct 2008, Mic wrote:
> > In order to add another 19 buttons, must vars b2 to b20 be declared
>
> No.
> Not unless you need to get at them again without using getChildByName() or
> similar.
> You could simple push each instances on to an array, rather than having b1
> ..
> bN.
>
> > class to a layout). Because b1 cannot be "reused" for another
> > addChild(), how would you add the other buttons? TIA,
>
> It can't be ?
>
> --
> Tom Chiverton
> Helping to revolutionarily mesh networks
>
>
>
> ****************************************************
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England and
> Wales under registered number OC307980 whose registered office address is at
> Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
> list of members is available for inspection at the registered office. Any
> reference to a partner in relation to Halliwells LLP means a member of
> Halliwells LLP.  Regulated by The Solicitors Regulation Authority.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 2500.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
> ------------------------------------
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Alternative FAQ location:
> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
> Links
>
>
>
>


-- 
Teoti Graphix, LLC
http://www.teotigraphix.com

Teoti Graphix Blog
http://www.blog.teotigraphix.com

You can find more by solving the problem then by 'asking the question'.

Reply via email to