Learning Swiz
Heres a few swiz project samples i have used for learning.. thanks to these blogs/sites for the great resources.
a) The max sample application from the following url: http://code.google.com/p/swizframework/downloads/list
b) http://www.benclinkinbeard.com/2009/05/swiz-example-application-with-presentation-model-pattern/
Ben Clinkinbeard’s example.
c) Joe Rinehart http://www.firemoss.com/index.cfm/2009/10/21/Swiz-in-20-minutes-video–byebye-boilerplate
d) the article based on IOC at http://www.adobe.com/devnet/flex/articles/ioc_frameworks_07.html written by Ed Eustace.
My First App
My first “hello world” is pretty much the same structure as Joe Rineharts, except I chose to use amfphp and a simple helloworld class (see below ) instead of coldfusion, because I will be using it in an upcoming project. I will do a better sample with more data.
http://www.matthewtomich.com/hello/ContentSwiz.html
Yeah I know its boring, I’ll write something more complex soon. Sourceview is enabled so you can see the code.
nb: just learning, so improvements/suggestions always welcome
Simple helloworld class.
class HelloWorld {
function sayHello()
{
return "Hello World!";
}
}
?>
