Skip to content

Instantly share code, notes, and snippets.

@splhack
Created December 17, 2013 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save splhack/8006982 to your computer and use it in GitHub Desktop.
Save splhack/8006982 to your computer and use it in GitHub Desktop.
> Flashのパブリッシュターゲットは Flash Player 7 にする
> ビットマッププロパティの圧縮は「劣化なし」にする
> 「劣化なし」でない場合 ERROR: Bitmap is as JPEG. Bitmap should be as 'Loss-less' となる
このへんはPublish for LWF が自動的に調整してくれるのでそれほど気にしなくても大丈夫です。
> ムービークリップの回転はできるがムービークリップ内の画像を回転させるとLWF変換時にエラーとなる
最近swf2lwf.rbが改善されてエラーにならなくなりました。
> stop,playなどの簡単なアクションは使用可能
> 但し mc.gotoAndStop() のようにムービークリップを指定した操作はできない
実はtellTargetが使えたりします。
tellTarget("mc") {
gotoAndStop();
}
tellTarget("..") {
gotoAndStop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment