up vote 2 down vote favorite
1
share [g+] share [fb]

I know, Flex should be the answer to this but I not using flex for this project and you probably won't convince me to...it's just not needed here.

Having said that - anybody have a specific actionscript layout manager that they use? I'm looking at the following 2 but I'm not sure but I'm not sure if I'm missing any others out there. If I had to list a requirement it would definitely be performance, if that helps at all...

The two libraries I'm looking at currently are:

BaseUI: http://www.soundstep.com/blog/downloads/baseui/

NoPonies FLexible Layout Class: http://www.blog.noponies.com/archives/109

Thanks for the help!

link|improve this question

feedback

6 Answers

up vote 2 down vote accepted

The Yahoo Astra Flash Components contain some nice base-layout classes that are somewhat similar to the Flex containers without requiring the Flex framework. I have used them on a couple as-only projects with pretty good results.

link|improve this answer
yay! These are pretty easy to use - thanks! – onekidney Feb 11 '09 at 20:09
feedback

I have used AsWing in the past which was quite good. It is however not only a layoutmanager library, but a complete UI framework modelled after Java Swing. So in your case it might be a bit overkill.

I haven't used any of the 2 libraries you mention unfortunately.

link|improve this answer
feedback

You might wanna look at this.

link|improve this answer
Hmmmmm - that certainly looks promising - thanks! – onekidney Feb 12 '09 at 15:25
feedback

Honestly. The two projects managed look very fine to me. If you need performance stick with them, if they are not to hard to use.

Otherwise I can give you some tips to decrease size and increase performance with flex :D

link|improve this answer
feedback

These are all decent but you might want to look at http://github.com/talltyler/ASTRID It has a few view renderers, a couple of them renderer standard HTML and CSS.

link|improve this answer
feedback

We recently added a layout framework to our AS3Commons repository. Very reduced, still powerful:

AS3Commons UI - Layouts

public function NestedLayouts() {
    var h : ILayout = hgroup(
        vlayout(
            new Box(), // 1
            new Box(), // 2
            hlayout(
                new Box(), // 3
                new Box() // 4
            )
        ),
        new Box(), // 5
        hlayout(
            vgroup(
                new Box(), // 6
                new Box(), // 7
            ),
          new Box() // 8
        ),
        new Box() // 9
    );
    h.layout(this);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.