Tuesday, February 1, 2011

Using swc with pylex

You have got a swc file(library) and you want to use with your pylex app.

This is solution.


from pylex import *
a=pylex("Test Compiled Package",layout="absolute", width="100%",height="100%",)
.... component and codes
saveandcompile("test.mxml",staticLinkLib=["yourlib.swc"])

Skeleton Preparing

Pylex Skeleton preparing by me. What is skeleton? Skeleton is simple empty app group in pylex. When you start a new app with pylex. You may choose use skeleton with copying a directory.
Skeleton app contains  lib app, test app (unit test(flexunit) of lib app), a gui app.
Skeleton app close to finish.

Wednesday, January 26, 2011

Pylex 0.1.0.0 Beta published

Lot of development completed.Flex 4.0 (and hero) supported. Unit testing(fluint) and debuging(reflexutil) (runtime object inspector) support added.
Changes are

* flex sdk 4.0 and 4.5 (hero/mobile) supported (spark, gumbo namespace added)
* samples changes to one project as demobrowser (need flex 4 sdk but can change to flex 3.5 sdk)
* fluint support (for unit testing)
* reflexutil support (object inspector in runtime)
* iframe support (flex-iframe)
* layouts added to pylex

Thursday, January 6, 2011

Sqlite DB Manager Project Finished!

Sqlite DB Manager Project is a pylex project about management sqlite databases written by me. Its take about less than one week.
(Actually I didn't find any spare time for it.) Its source is too little. LOC (lines of code) values in below. Server side technology is cherrypy.
Client side genereted by pylex.

You may test in this link.
Username:demo
password:demo

LOC Values
--------------------
Server Side : 285 (22 lines html template included)
server side unit test: 129
Client Side GUI (Pylex)
layouts.py : 110
client.py : 193
Client Side Code (Action Script)
client.asc : 413
MXML (Genereted file): 855

0.0.9.2 Beta published

This version fixed small bugs and 3 new tag added. You may download with download section

Saturday, December 18, 2010

Followers