Archive for June, 2008

PureMVC file templates for FlashDevelop

Friday, June 20th, 2008

I wrote 3 small file templates for the AS3Project in FlashDevelop.
They come in quite handy when working on a PureMVC based project.
PureMVC-Command.as.fdt
PureMVC-Mediator.as.fdt
PureMVC-Proxy.as.fdt
I hope it helps someone ;)

Quickly generating AsDoc

Tuesday, June 17th, 2008

For ease of use i have a small batch file to generate the documentation for my ActionScript projects. It’s definitely nothing special, but if you struggle with the asdoc syntax and you just want a quick solution, here it is:
@echo off
set asdoc_bin=”E:\projects\flex_sdk_3\bin\asdoc.exe”
set aswing_path=”E:\projects\aswing\trunk\AsWing\bin”
%asdoc_bin% -doc-sources org\dirty_motherfucker\. -main-title “My ActionScript Project” -output “doc” -compiler.library-path %aswing_path%
pause
It also points [...]