onClipEvent()
At the mailinglist on www.opaque.net I found SWFDisplayItem->addAction,
which is defined in ming-0.2a/php_ext/ming-4.0.7.c
Seems to be the equivalent to the onClipEvent() function in ActionScript:
void SWFDisplayItem->addAction(SWFAction action, int flags)
flags for SWFDisplayItem_addAction as PHP-Constants:
SWFACTION_ONLOAD
SWFACTION_ENTERFRAME
SWFACTION_UNLOAD
SWFACTION_MOUSEMOVE
SWFACTION_MOUSEDOWN
SWFACTION_MOUSEUP
SWFACTION_KEYDOWN
SWFACTION_KEYUP
SWFACTION_DATA
The following might be the same as onClipEvent(data) inside $child:
$m = new SWFMovie();
...
$child = new SWFMovie();
...
// SWFMovie->add returns SWFDisplayItem:
$i = $m->add($child);
$i->addAction($action_script, SWFACTION_DATA);
Jan
SWFFill->moveTo
(No version information available, might be only in CVS)
SWFFill->moveTo — 塗りつぶしの原点を移動する
説明
void moveTo
( int $x
, int $y
)
警告
この関数は、 実験的 なものです。この関数の動作・ 名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。
塗りつぶしの原点を、指定したグローバル座標に移動します。
パラメータ
- x
-
X 座標。
- y
-
Y 座標。
返り値
値を返しません。
SWFFill->moveTo
17-Jul-2003 09:05
