E-PARLOR : MindMapFlash

HomePage :: Blog :: Gallery :: Library :: Forum :: Categories :: Index :: Changes :: Comments :: Login
Most recent edit on 2006-01-08 21:13:41 by TakeiShigeo

Additions:

CategoryMindMap CategoryDevelopmentWikka




Edited on 2006-01-08 21:04:30 by TakeiShigeo

Additions:


Deletions:




Edited on 2006-01-08 21:03:59 by TakeiShigeo

Additions:


Deletions:




Edited on 2006-01-08 20:58:54 by TakeiShigeo

Additions:
actions/flash.php にパラメータを追加します。
%%(html4strict)

ex.




Edited on 2006-01-08 20:53:16 by TakeiShigeo

No differences.


Edited on 2006-01-08 19:29:22 by TakeiShigeo

Additions:

MindMapFlash

flash.php
<param name="FlashVars" value="'.$loadfile.'" />
%%
flash.php 元ソース




Oldest known version of this page was edited on 2006-01-08 19:27:49 by TakeiShigeo []
Page view:
<?php

/*

Syntax:
   {{Flash url="http://example.com/example.swf" [width=x] [height=x]}}

Width and Height are optional arguments.

*/


if (!$width) $width = 550;
else $width = (int)$width;
if ($width>950) $width = 950;

if (!$height) $height = 400;
else $height = (int)$height;
if ($height>950) $height = 950;

if (!$url) $url = $vars[0];
$url = $this->cleanUrl(trim($url));

if ($url)
  echo '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'.$width.'" height="'.$height.'">
    <param name="movie" value="'
.$url.'" />
    <param name="quality" value="high" />
    <embed src="'
.$url.'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'.$width.'" height="'.$height.'"></embed>
</object>'
;
?>
:
1999-2006 The E-PARLOR Project. All right reserved. :: Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.6.1
Page was generated in 0.0829 seconds