____  _ ____ ____ ______ ____  
|___ \| |___ \___ \____  |___ \ 
  __) | | __) |__) |  / /  __) |
 |__ <| ||__ <|__ <  / /  |__ < 
 ___) | |___) |__) |/ /   ___) |
|____/|_|____/____//_/   |____/ 
      

i pwn all thats all u need to know.

Friday, October 19, 2007

Quake ported to Flash Player 10!

At this years Adobe MAX (Chicago) they showcased what the next flash player is capable of doing allowing C/C++ to be ported directly to ActionScript 3.0! they had a demo running Quake ported into Flash Player 10. holy crap...

Other:
Flash on C/C++
Flex Applications on Linux
Seam Carving
Photoshop Express
Flash Home for Mobile
PDF Packaging
Flash "Next"

//video's


//c/c++


//next


//PDF Packaging


//Flash Home for Mobile



//Photoshop Express


//Seam Carving


//flex on linux


amazing ...

Wednesday, October 17, 2007

Eyeblaster Campaign Monitor


Adobe/Macromedia - site of the day (award). Eyeblaster Campaign Monitor

Created with Flash and Flex Builder, Eyeblaster Campaign Monitor is a powerful solution that enables clients to monitor their online ad campaigns. Combining top-line measurement, metrics, and ROI data with the ability to drill down into each ad campaign, this tool presents clients with a more complete picture of campaign performance. And the revolutionary user interface puts cumbersome information right at the user's fingertips. (Oct. 16, 2007)

Developed by Eyeblaster
Industries Technology
Project Types Web Sites

--
Very nice piece of technology and definitely worth a shout out, well done guys! ;)

Labels: , , ,

Thursday, October 11, 2007

Stage.align

//stage align

I used it on this project, zombiedeathsquad.com to keep the alignment centered.

//usage

Stage.align


//value //vertical //horizontal
"T" top center
"B" bottom center
"L" center left
"R" center right
"TL" top left
"TR" top right
"BL" bottom left
"BR" bottom right

I have written a code snippet below to handle the resize of flash/browser window to scale arrordingly to the stage.

set your flash embed tags within your HTML page to '100%' width/height.


//action script code


//center align
Stage.scaleMode = "noScale";
Stage.align = "LT"; //Left-Top see above
Stage.addListener(logo);
logo.onResize = logoCenter;
function logoCenter() {
logo._x = (Stage.width/2)-(logo._width/2);
logo._y = (Stage.width/2)-(logo._width/2);
}
logoCenter();


//details
'_width/2' halves your 'Stage.align' in two this gets your center on the page/flash.


//referance

http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary674.html
http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary680.html

Labels: , ,