Hola a todos.
Estoy intentando hacer algo mo esto:
http://www.theeggrepublic.com
http://www.flashdo.com/item/3d-tilt-coming-soon-with-countdown-timer-as3/464/full_screen_preview
http://www.soft.se/#index

Tengo algo, pero aun no logro el efecto deseado, la verdad tengo un conocimiento básico de ActionScript:

var spPrincipal:Sprite= new Sprite();
spPrincipal.addChild(mc);
mc.x=0;
mc.y=0;
spPrincipal.x = stage.stageWidth / 2;
spPrincipal.y = stage.stageHeight / 2;
addChild(spPrincipal);

addEventListener (Event.ENTER_FRAME, rotar)

function rotar (evt:Event):void{

spPrincipal.rotationY = 45 * - ((stage.mouseX -(stage.stageWidth / 2 )) / (stage.stageWidth / 2));
spPrincipal.rotationX = 15 * - ((stage.mouseY -(stage.stageHeight / 2 )) / (stage.stageHeight / 2));

}

Muchas gracias por la ayuda que me puedan dar