No, that didn't work. Actually, I'm doing this within a non-movieclip
extended class, so the syntax is like this:

clip_mc.createClassObject(List, "listText_lst", clip.getNextHighestDepth()
);
clip_mc.listText_lst.setSize(550, 150);
clip_mc.listText_lst.move(listText.x+50, listText.y+50);

But that doesn't work either.

Would it make a difference if this is happening outside a movieclip class?

In the documentation, it does say that that the UIObject class "wraps" the
MovieClip class - so I'm wondering if that is the problem. The
createClassObject method does not come up in the code hinting for the
MovieClip class either. Perhaps the method does not exist in the plain old
MovieClip class?

Thanks,

August

On 4/27/06, Stefan Thurnherr <[EMAIL PROTECTED]> wrote:
>
> On 4/27/06, August Gresens <[EMAIL PROTECTED]> wrote:
> > Trying to create a List Class instance and having trouble. The list
> shows up
> > on the stage, but the variable returned from createClassObject is null,
> so I
> > cannot change the format or reposition it.
> >
> > This code is based on an example in the Mook Essential ActionScript
> book.
> > The List composnent is in the Library and placed on frame after the
> classes
> > have loaded.
> >
> > // -------- begin code snippet
> >
> > import mx.controls.List
> >
> > var listText:List;
> >
> > clip_mc = parent_mc.createEmptyMovieClip( "clip",
> parent.getNextHighestDepth()
> > );
> > listText =   clip_mc.createClassObject(List, "listText_lst",
> > clip.getNextHighestDepth() );
> >
> > // these commands have no effect -- debugger shows that listText is
> null.
> > listText.setSize(550, 150);
> > listText.move(listText.x+50, listText.y+50);
>
> Have you tried
>
> listText_lst.setSize(550, 150);
> listText_lst.move(listText.x+50, listText.y+50);
>
> instead? I am not sure whether createClassObject returns the created
> class object...
>
> HTH,
> stefan.
>
> >
> >
> > Any thoughts?
> >
> > Thanks,
> >
> > August
> >
> > --
> > ---------------------------------------------------------
> > --------------------------------------------------------
> >
> > August Gresens
> > Technical Director
> > Black Hammer Productions, NYC
> > [EMAIL PROTECTED]
> >
> > ---------------------------------------------------------
> > --------------------------------------------------------
> > _______________________________________________
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com
> > http://training.figleaf.com
> >
> _______________________________________________
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>



--
---------------------------------------------------------
--------------------------------------------------------

August Gresens
Technical Director
Black Hammer Productions, NYC
[EMAIL PROTECTED]

---------------------------------------------------------
--------------------------------------------------------
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to