Flash

creating FLV videos with ffmpeg

1pass:
ffmpeg -i input -acodec libmp3lame -ab 96k -ac 2 -vcodec flv -b 300k -s 960x540 output.flv

encoding MP4 videos with ffmpeg

1pass:
ffmpeg -i input -acodec libfaac -ab 96k -ac 2 -vcodec libx264 -vpre slow -crf 22 -threads 8 output.mp4

2pass:
ffmpeg -y -i input -an -vcodec libx264 -vpre medium_firstpass -b 300k -threads 8 -f mp4 /dev/null
ffmpeg -y -i input -acodec libfaac -ab 96k
-ac 2 -vcodec libx264 -vpre medium -b 300k -threads 8 output.mp4

german locale "de_DE"

in

actually this will work for all locales  in bundles/* (click the repo link to see)
just make sure you change every occurance of the locale (marked red) in the compiling command!

Flex intellisense forgets flash.*

Known bug, as described in FB-16703 and "Targeting Flash Player 10"

It looks like the problem is caused by {targetPlayerMajorVersion} no longer resolving.

workaround:

add the following SWC to the library path: FLEX_SDK\libs\player\10\playerglobal.swc

 

Red5 and BlazeDS

QnD comparison of Red5 and BlazeDS with a focus on server-pushing.

Flex Formatter

This is an Eclipse editor tool to provide source code formatting for Adobe Flex code (i.e. Actionscript and MXML). It provides a small set of formatting options which hopefully covers the most popular coding conventions.

-> http://sourceforge.net/projects/flexformatter/

encode VP6 FLVs

using mencoder and Video For Windows codecs

-> http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-video-for-windows.html

setting up Flex Builder Linux alpha 3

how to meet all the requirements to and actually install Flex Builder on Linux.

Drupal Menu in Flash

using menu_get_menu() and other methods of drupals Menu System API you get a pretty decent sitemap:

MVC framework - PureMVC

PureMVC is a lightweight framework for creating applications in ActionScript 3, based upon the classic Model-View-Controller design meta-pattern.