downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SWFFill->rotateTo> <SWFFill
Last updated: Fri, 20 May 2011

view this page in

SWFFill->moveTo

(PHP 4 >= 4.0.5)

SWFFill->moveToMueve el origen del relleno

Descripción

void SWFFill::moveTo ( float $x , float $y )
Warning

Esta función ha sido declarada EXPERIMENTAL. Su comportamiento, su nombre y la documentación que le acompaña puede cambiar sin previo aviso en futuras versiones de PHP. Use esta función bajo su propio riesgo.

Mueve el origen del relleno a las coordenadas globales dadas.

Parámetros

x

Coordenada X

y

Coordenada Y

Valores devueltos

No devuelve ningún valor.



add a note add a note User Contributed Notes SWFFill->moveTo
17-Jul-2003 07:05
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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites