作っている最中だけど

作っている最中だけどコナミコマンド入れると動画が出ます。
http://moeten.info/maidcafe/

作り方はそれほど難しくなくて、
Premireでアルファチャンネル付きのFlv動画を出力して
Overlay.jsでFlashをHTMLページの上に載っける感じです。
追記:動画をちょびっと編集したのと、ソースコードを載っけました。あと動画って8の倍数にしないといろいろとめんどいのね。

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    mouseDown="{ExternalInterface.call('hideFlash')}"
    backgroundAlpha="0" backgroundGradientAlphas="[0,0]" cacheAsBitmap="true" backgroundColor="0xffffff" backgroundGradientColors="[0xffffff,0xffffff]">
<mx:VideoDisplay id="myFlv" source="http://moeten.info/movie/20100201_Valentine.flv"
    autoPlay="true" cacheAsBitmap="true"
    y="400"
    backgroundAlpha="0"
    horizontalCenter="0"
    complete="{ExternalInterface.call('hideFlash')}"/>
</mx:Application>