SWFDisplayItem::setRatio

(PHP 5 < 5.3.0, PECL ming SVN)

SWFDisplayItem::setRatioEstablece el ratio del objeto

Descripción

SWFDisplayItem::setRatio ( float $ratio ) : void
Advertencia

Esta función ha sido declarada EXPERIMENTAL. Su funcionamiento, nombre y la documentación que le acompaña puede cambiar sin previo aviso en futuras versiones de PHP. Utilícela bajo su propia responsabilidad.

swfdisplayitem::setratio() establece el ratio del objeto a ratio. Obviamente sólo es útil para morphs.

El objeto puede ser un swfshape(), un swfbutton(), un swftext() o un swfsprite(). Debe haber sido añadido usando swfmovie::add().

Valores devueltos

No devuelve ningún valor.

Ejemplos

Este sencillo ejemplo formará tres bonitos círculos concéntricos.

Ejemplo #1 Ejemplo de swfdisplayitem::setname()

<?php

$p 
= new SWFMorph();

$g = new SWFGradient();
$g->addEntry(0.0000);
$g->addEntry(0.160xff0xff0xff);
$g->addEntry(0.32000);
$g->addEntry(0.480xff0xff0xff);
$g->addEntry(0.64000);
$g->addEntry(0.800xff0xff0xff);
$g->addEntry(1.00000);

$s $p->getShape1();
$f $s->addFill($gSWFFILL_RADIAL_GRADIENT);
$f->scaleTo(0.05);
$s->setLeftFill($f);
$s->movePenTo(-160, -120);
$s->drawLine(3200);
$s->drawLine(0240);
$s->drawLine(-3200);
$s->drawLine(0, -240);

$g = new SWFGradient();
$g->addEntry(0.0000);
$g->addEntry(0.160xff00);
$g->addEntry(0.32000);
$g->addEntry(0.4800xff0);
$g->addEntry(0.64000);
$g->addEntry(0.80000xff);
$g->addEntry(1.00000);

$s $p->getShape2();
$f $s->addFill($gSWFFILL_RADIAL_GRADIENT);
$f->scaleTo(0.05);
$f->skewXTo(1.0);
$s->setLeftFill($f);
$s->movePenTo(-160, -120);
$s->drawLine(3200);
$s->drawLine(0240);
$s->drawLine(-3200);
$s->drawLine(0, -240);

$m = new SWFMovie();
$m->setDimension(320240);
$i $m->add($p);
$i->moveTo(160120);

for (
$n=0$n<=1.001$n+=0.01) {
    
$i->setRatio($n);
    
$m->nextFrame();
}

header('Content-type: application/x-shockwave-flash');
$m->output();
?>