コード例 #1
0
ファイル: ming2.php プロジェクト: SandyS1/presentations
    // 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();