本文整理汇总了PHP中SWFMovie::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP SWFMovie::remove方法的具体用法?PHP SWFMovie::remove怎么用?PHP SWFMovie::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SWFMovie
的用法示例。
在下文中一共展示了SWFMovie::remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: SWFText
// get the text
$t = new SWFText();
$t->setFont($f);
$t->setHeight(50);
$t->setColor(0, 0, 0);
$t->moveTo(-$f->getWidth($title) / 2, 25);
$t->addString($title);
// make a button
$b[$x] = new SWFButton();
$b[$x]->addShape($hit, SWFBUTTON_HIT);
$b[$x]->addShape($t, SWFBUTTON_OVER | SWFBUTTON_UP | SWFBUTTON_DOWN);
$b[$x++]->addAction(new SWFAction("getURL('{$link}','_new');"), SWFBUTTON_MOUSEUP);
}
// display them
for ($x = 0; $x < $itemCount; $x++) {
$i = $m->add($b[$x]);
$i->moveTo($width / 2, 30);
for ($j = 0; $j <= 30; ++$j) {
$i->scaleTo(sqrt(sqrt($j / 30)));
$i->multColor(1.0, 1.0, 1.0, $j / 30);
$m->nextFrame();
}
for ($j = 0; $j <= 30; ++$j) {
$i->scaleTo(sqrt(sqrt(1 + $j / 30)));
$i->multColor(1.0, 1.0, 1.0, (30 - $j) / 30);
$m->nextFrame();
}
$m->remove($i);
}
header('Content-type: application/x-shockwave-flash');
$m->output();