Thursday, October 27, 2016

Hello World LowRa

Hello World LowRa


yup, another as3 framework nice features&idea, thx! Francis Bourre for LowRa anyway
well...no more talk just try! ;)

Required?

  • LowRa rev488 : http://osflash.org/projects/lowra
  • Original Sample : http://www.tweenpix.net/blog/index.php?post/2008/01/28/hello-world-with-LowRA
  • My flash sample : http://sleepydesign.com/labs/as3/LowRa/HelloWorldLowRa.zip

XML?

<beans>
    <root>
        <txt id="txt" type="flash.text.TextField">
            <property name="text" value="Hello world!"/>
            <property name="autoSize" value="left"/>
            <method-call name="setTextFormat">
                <argument ref="tf"/>
            </method-call>
        </txt>
    </root>
    <tf id="tf" type="flash.text.TextFormat">
        <argument type="" value="Arial"/>
        <argument type="Number" value="30"/>
        <argument type="Number" value="0xFF0000"/>
    </tf>
</beans>

Script?

package
{

import com.bourre.ioc.load.ApplicationLoader;
import flash.display.Sprite;
import flash.net.URLRequest;

/**
*
* HelloWorld LowRa : Low-level Rework on Actionscript 3.0
*
* @link http://osflash.org/projects/lowra
* @author katopz@sleepydesign.com
*/
public class HelloWorldLowRa extends Sprite
{
public function HelloWorldLowRa()
{
new ApplicationLoader(this, true, new URLRequest("HelloWorldLowRa.xml"));
}
}

}


Result?



  • http://sleepydesign.com/labs/as3/LowRa/HelloWorldLowRa/

Next?



  • try more at dll?, data?, plugins? bla bla bla
  • try another framework? vegas? jumpship? troyworks? AsWing?

Any good News?



look like i need more than 24hrs to try em all, lol anyway the good news is Collada (DAE) animation with away3d is already finish for a month (ago) with some useful stuff like controllable joint at runtime (thats fun!), you can expected more for collada maya samples&tutorials im working on it ;)

ve fun! ;D


Available link for download