TODO: FIXME

Source http://www.insideria.com/2010/01/todo-fixme.html

Java programmers have long been able to embed notes in their code prefaced with TODO or FIXME. Eclipse summarizes these notes in the Task view for quick, easy reference. FIXME is essentially a higher priority TODO reminder. There is a…

Read more >>

Flexunit 4 with Test Driven Development article on FFDMag

Source http://elromdesign.com/blog/2010/01/19/flexunit-4-with-test-driven-development-article-on-ffdmag/

I recently published an article on Flash&Flex Magazine about Flexunit 4 with Test Driven Development. You can download it from here:
http://ffdmag.com/magazine/991-flash-and-mobile-apps-iphone-and-ipod-touch
I decided to use a real life example to help reader better understand FlexUnit 4 and TDD. While trying to come up with an example, I realized that one of my tasks these days is to create and AIR application similar to Adobe MAX Companion AIR Application for a conference I am organizing called FlashAndTheCity…

Read more >>

Create a project for FDT fast!!

Source http://blog.base42.nl/2010/01/18/create-a-project-for-fdt-fast/

I made a terminal script for creating new FDT projects. I use it when I want to test something or create a prototype.

The code can be found on the post detail page.

#!/bin/sh
 
# ——————————
# – FDT stub project creator –
# – Jankees van Woezik, 2010 -
# – http://blog.base42.nl -
# – januari 11, 2010 -
# ——————————
 
if [ $# -ne 1 ]
then
echo ""
echo "Problem, missing path"
echo "Usage: ./create_project.sh <path> "
echo ""
else
echo ""
echo "What's the name of the project:"
read project_name
echo ""
echo "creating folder: $1"
 
#####
# Create project folder
#####
 
mkdir $1
 
#####
# Create AS3_ClassPath
#####
 
echo "creating file: $1/…

Read more >>

Profiling a FDT project with Flash Builder

Source http://blog.base42.nl/2010/01/10/profiling-a-fdt-project-with-flash-builder/

I made a screencast on how I profile my FDT applications using the Flash Builder profiler. With this profiler you can easily find memory leaks in your application.

All the files I used in the video can be downloaded here:

Read more >>

Using ant for Flex – a no B.S. guide – Part 4 of 4

Source http://dispatchevent.org/mims/ant-for-flex-part-4/

Part 1
Part 2
Part 3
Part 4

Now that you’ve been through 3 exhaustive tutorials on ant for flex, it’s time to use your knowledge you’ve gained to turn your back on the built-in Flex compiler and switch to ant for your builds. This part applies to FlexBuilder (and FlashBuilder) users only although it may apply if you’re [...]

Read more >>

Using ant for Flex – a no B.S. guide – Part 3 of 4

Using ant for Flex – a no B.S. guide – Part 2 of 4

Page 1 of 612345»...Last »