Cyntaxic
Cyntaxic Framework
The Cyntaxic framework is the ActionScript 3 MVC framework that follows
the KIASS principal. It was made to address everyday coding while keeping it simple. Cyntaxic is free and open source for the people of this fine planet.
Demo Applications Made with Cyntaxic
- Demo 1
Stickies Demo Application
See it Live or Download Source - Demo 2
Cyntils Demo Application
See it Live or Download Source
Some Cyntaxic Features You May Like
-
Built in Debugger
The built in debugger along with the describe method makes trace output configurable and readable. Because it is outputted in JSON, object description output is portable.
-
CynViewProxy Class
The CynViewProxy class allows the Cyntaxic framework to work well with Flex and any other class that cannot extend the CynComposite or CynComponent classes.
-
Static Reference
The Cyntaxic base class gives static reference to commonly used objects like root, the stage object and FlashVars. Additionally, the model and the controller can be accessed statically.
-
Reduced Abstraction
The levels of abstraction between you and what is actually going on in the code is reduced. Cyntaxic works in a way where no proxies or mediators need to be created.
-
Works Well with Graphics
Cyntaxic is designed to work well with graphical library assets with its chainable init method that can be used to function like a constructor for library assets that extend a code class.
-
Cyntaxic Value Object
Cyntaxic uses a strongly typed value object called the CyntaxicVO for all data transmission. It has features such as a describe method and dynamic data appending.