Flashの素材Works LightBox Flash from Flash

Flashフラッシュのフリー素材を作成。このサイト(SSPlanning)では、外部ファイル読み込み編集サンプルが無料でダウンロードできます。
当サイトのFlashは、JavaScriptで読み込んでいます。
Flashフラッシュのフリー素材では、外部ファイル読み込み編集サンプルが無料でダウンロードできます。
各OS別のFlash Player installer 及び Uninstaller
Flashの素材 >> Flash Works >> LightBox Action, Flash from Flash
※ 下記Flashの画像をクリックすると、LightBox OverLayで新たなFlashを表示します。
Get Flash Player

FlashをSWFObjectで読み込んでいます。
JavaScriptを有効にされるとFlashが表示されます。


Flashフラッシュのフリー素材。このサイトでは、外部ファイル読み込み編集サンプルが無料でダウンロードできます。
各OS別のFlash Player installer 及び Uninstaller

[ 覚書 ] LightBox(OverLay)で
Flash内のリンクから別のFlashを表示(Flash from Flash)する方法。


①LightBox++.jsを入手する。
http://blog.codefidelity.com/downloads/lightbox++v101.zip

解凍後、lightboxフォルダを作成し、解凍したjsフォルダ、cssフォルダを貼り付ける。

②Flashのボタンアクション(ActionScript)を
通常のScriptだと

on (release) {
 getURL("指定URL", "_blank");
}

を以下に変更

on (release) {
 getURL("javascript:SWFDelegate(¥'swf名¥',¥'横幅¥',¥'高さ¥',¥'見出し名¥');");
}

更に、HTMLの </head>前に以下を追加する。

<link rel="stylesheet" href="lightbox/css/lightbox.css" type="text/css" media="screen" />
<script src="lightbox/js/prototype.js" type="text/javascript"></script>
<script src="lightbox/js/scriptaculous.js?load=effects" type="text/javascript"></script>
<script src="lightbox/js/lightbox++.js" type="text/javascript"></script>
<script type="text/javascript">
 function SWFDelegate(url,width,height,caption) {
 var objLink = document.createElement('a');
 objLink.setAttribute('href',url);
 objLink.setAttribute('rel','lightbox');
 objLink.setAttribute('title',caption);
 if(typeof width != 'undefined') {objLink.setAttribute('width',width);}
 if(typeof height != 'undefined') {objLink.setAttribute('height',height);}
 Lightbox.prototype.start(objLink);
 }
</script>


※ ⇒ LightBoxのOverLayでFlashから画像を表示する方法

外部ファイル読み込みのFlash素材
外部ファイルを編集・変更するだけで済み、Flash自体は、
そのまま使いまわしができます。
flash/flash_free_sample_contents

Flashに読み込む外部ファイルの作り方
Flash(フラッシュ)に読み込ませるText,HTML,ASといった
外部ファイルの作り方(HowTo)
flash/flash_howto_contents

Flash制作に便利な情報
Flash(フラッシュ)作成で便利な情報をMemoしました。
FlashPlayerのアンインストールの仕方など...
flash/flash_info_contents

Flash ActionScript Source
このサイトのFlashActionScriptソースを一部公開しています。
flash/flash_as_source_contents