Ever tried to create something in as few lines of code as possible? Well, here is your chance! Create a cool little application (in Flash) in 25 lines (max) or less. Now, as lines have been a little difficult for people to understand in the past here is a run-down on what is counted as a line (with a little example):
CODE
function myFunction():void{ // doesn't count, function declaration
var mcArray:Array = new Array(); // counts, setting a variable
for(var i:Number=0; i<50; i++){ // counts, loop action
var mc:MovieClip = new MovieClip(); // counts, setting a variable
mc.x = mc.y = 50; // counts as 2, setting 2 variables.
// doesn't count, blank line
stage.addChild(mc); // counts, calling a function
mcArray.push(mc); // counts, calling a function
} // doesn't count, closing brace
} // doesn't count, empty line just closing brace
myFunction(); // counts, calling a function
var myNumber:Number; // doesn't count, variable declared, but not set
As such the total number of lines of code in the above example is 9.
Hopefully that makes sense, but don't be afraid to ask questions about it.
Please post the code you are using as usual (like so

) and attached a zipped swf/ flv with your post.
Enjoy, I can't wait to see what people come up with.