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
(PHP 4 >= 4.0.5)
SWFFill::moveTo — Moves fill origin
Descrição
void SWFFill::moveTo
( float
$x
, float $y
)Aviso
Esta função é EXPERIMENTAL. O comportamento desta função, seu nome, incluindo toda documentação pode ser modificado sem aviso em futuras versões do PHP. Esta função deve ser usada por sua própria conta e risco.
Moves the fill origin to the given global coordinates.
Parâmetros
-
x -
X-coordinate
-
y -
Y-coordinate
Valor Retornado
Não há valor retornado.
Anonymous ¶
9 years ago
