Поиск по:oit.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера oit.cmc.msu.ru ,которые мы индексируем. Показаны документы 1861 - 1880 из 3520.
Упорядочить по:
URL
|
дате изменения
1861. SWFShape
PHP Manual . ... PHP 4 >= 4.0.5) SWFShape -- Creates a new shape object. new swfshape ( (void);) . ... php $s = new SWFShape(); $s->setLine(40, 0x7f, 0, 0); $s->setRightFill($s->addFill(0xff, 0, 0)); $s->movePenTo(200, 200); $s->drawLineTo(6200, 200); $s->drawLineTo(6200, 4600); $s->drawCurveTo(200, 4600, 200, 200); $m = new SWFMovie(); $m->setDimension(6400, 4800); $m->setRate(12.0); $m->add($s); $m->nextFrame(); header('Content-type: application/x-shockwave-flash'); $m->output(); ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfshape.html -- 5.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1862. SWFShape->setLine
... This function is EXPERIMENTAL . ... Example 1. swfshape->setline() example . php $s = new SWFShape (); $f1 = $s- addFill ( 0xff , 0, 0); $f2 = $s- addFill ( 0xff , 0x7f , 0); $f3 = $s- addFill ( 0xff , 0xff , 0); $f4 = $s- addFill (0, 0xff , 0); $f5 = $s- addFill (0, 0, 0xff ); // bug: have to declare all line styles before you use them $s- setLine (40, 0x7f , 0, 0); $s- setLine (40, 0x7f , 0x3f, 0); $s- setLine (40, 0x7f , 0x7f , 0); $s- ... SWFShape . ... SWFShape->addFill ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfshape.setline.html -- 6.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1863. SWFDisplayItem->addColor
PHP Manual . ... Next . unknown) SWFDisplayItem->addColor -- Adds the given color to this item's color transform. void swfdisplayitem->addcolor ( [int red [, int green [, int blue [, int a]]]]) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->addcolor() adds the color to this item's color transform. The color is given in its RGB form. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.addcolor.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1864. SWFDisplayItem->multColor
... This function is EXPERIMENTAL . ... Example 1. swfdisplayitem->multcolor() example . php $b = new SWFBitmap( backyard.jpg ); // note use your own picture :-) $s = new SWFShape(); $s- setRightFill($s- addFill($b)); $s- drawLine ($b- getWidth (), 0); $s- drawLine (0, $b- getHeight ()); $s- drawLine (-$b- getWidth (), 0); $s- drawLine (0, -$b- getHeight ()); $m = new SWFMovie(); $m- setDimension($b- getWidth (), $b- ... SWFDisplayItem->addColor . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.multcolor.html -- 5.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1865. SWFDisplayItem->setRatio
... unknown) SWFDisplayItem->setRatio -- Sets the object's ratio. void swfdisplayitem->setratio ( float ratio) . ... This function is EXPERIMENTAL . ... Example 1. swfdisplayitem->setname() example . php $p = new SWFMorph(); $g = new SWFGradient(); $g- addEntry (0.0, 0, 0, 0); $g- addEntry (0.16, 0xff , 0xff , 0xff ); $g- addEntry (0.32, 0, 0, 0); $g- addEntry (0.48, 0xff , 0xff , 0xff ); $g- addEntry (0.64, 0, 0, 0); $g- addEntry (0.80, 0xff , 0xff , 0xff ); $g- ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.setratio.html -- 6.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
1866. SWFDisplayItem->remove
PHP Manual . Prev . Next . unknown) SWFDisplayItem->remove -- Removes the object from the movie . void swfdisplayitem->remove ( (void);) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->remove() removes this object from the movie's display list. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. It must have been added using the swfmovie->add() . See also swfmovie->add() . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.remove.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1867. SWFDisplayItem->setName
PHP Manual . Prev . Next . unknown) SWFDisplayItem->setName -- Sets the object's name . void swfdisplayitem->setname ( string name) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. swfdisplayitem->setname() sets the object's name to name , for targetting with action script. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.setname.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1868. SWFDisplayItem->setDepth
PHP Manual . Prev . Next . unknown) SWFDisplayItem->setDepth -- Sets z-order . void swfdisplayitem->setdepth ( float depth) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->rotate() sets the object's z-order to depth . Depth defaults to the order in which instances are created (by add'ing a shape/text to a movie)- newer ones are on top of older ones. ... SWFDisplayItem->skewY . ... SWFDisplayItem->remove ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.setdepth.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1869. SWFDisplayItem->skewY
PHP Manual . Prev . Next . unknown) SWFDisplayItem->skewY -- Sets the Y-skew. void swfdisplayitem->skewy ( float ddegrees) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->skewy() adds ddegrees to current y-skew. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->skewyto() , swfdisplayitem->skewx() and swfdisplayitem->skewxto() . ... SWFDisplayItem->skewYTo . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.skewy.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1870. SWFDisplayItem->skewYTo
PHP Manual . Prev . Next . unknown) SWFDisplayItem->skewYTo -- Sets the Y-skew. void swfdisplayitem->skewyto ( float degrees) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->skewyto() sets the y-skew to degrees . ... The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->skewy() , swfdisplayitem->skewx() and swfdisplayitem->skewxto() . ... SWFDisplayItem->skewX . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.skewyto.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
1871. SWFDisplayItem->skewX
PHP Manual . Prev . Next . unknown) SWFDisplayItem->skewX -- Sets the X-skew. void swfdisplayitem->skewx ( float ddegrees) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->skewx() adds ddegrees to current x-skew. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->skewx() , swfdisplayitem->skewy() and swfdisplayitem->skewyto() . ... SWFDisplayItem->skewYTo ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.skewx.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1872. SWFDisplayItem->skewXTo
PHP Manual . Prev . Next . unknown) SWFDisplayItem->skewXTo -- Sets the X-skew. void swfdisplayitem->skewxto ( float degrees) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->skewxto() sets the x-skew to degrees . For degrees is 1.0, it means a 45-degree forward slant. More is more forward, less is more backward. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.skewxto.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
1873. SWFDisplayItem->Rotate
PHP Manual . Prev . Next . unknown) SWFDisplayItem->Rotate -- Rotates in relative coordinates. void swfdisplayitem->rotate ( float ddegrees) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->rotate() rotates the current object by ddegrees degrees from its current rotation. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->rotateto() . ... SWFDisplayItem->rotateTo . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.rotate.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1874. SWFDisplayItem->rotateTo
PHP Manual . ... This function is EXPERIMENTAL . ... Really! function text($r, $g, $b, $a, $ rot , $x, $y, $ scale , $string) { global $f, $m; $t = new SWFText(); $t- setFont($f); $t- setColor($r, $g, $b, $a); $t- setHeight(960); $t- ... ;moveTo(-($f- getWidth($string))/2, $f- getAscent()/2); $t- addString($string); // we can add properties just like a normal php var, // as long as the names aren't already used. // e.g., we can't set $i- scale , because that's a ... SWFDisplayItem->scale . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.rotateto.html -- 6.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
1875. SWFDisplayItem->scale
PHP Manual . Prev . Next . unknown) SWFDisplayItem->scale -- Scales the object in relative coordinates. void swfdisplayitem->scale ( int dx, int dy) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. swfdisplayitem->scale() scales the current object by ( dx , dy ) from its current size. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.scale.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1876. SWFDisplayItem->move
PHP Manual . ... Next . unknown) SWFDisplayItem->move -- Moves object in relative coordinates. void swfdisplayitem->move ( int dx, int dy) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->move() moves the current object by ( dx , dy ) from its current position. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->moveto() . ... SWFDisplayItem->moveTo . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.move.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1877. SWFDisplayItem->scaleTo
PHP Manual . Prev . Next . unknown) SWFDisplayItem->scaleTo -- Scales the object in global coordinates. void swfdisplayitem->scaleto ( int x, int y) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. swfdisplayitem->scaleto() scales the current object to ( x , y ) in global coordinates. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.scaleto.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1878. SWFDisplayItem->moveTo
... Next . unknown) SWFDisplayItem->moveTo -- Moves object in global coordinates. void swfdisplayitem->moveto ( int x, int y) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem->moveto() moves the current object to ( x , y ) in global coordinates. The object may be a swfshape() , a swfbutton() , a swftext() or a swfsprite() object. ... See also swfdisplayitem->move() . ... SWFDisplayItem . ... SWFDisplayItem->move ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.moveto.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1879. SWFDisplayItem
PHP Manual . Prev . Next . unknown) SWFDisplayItem -- Creates a new displayitem object. new swfdisplayitem ( (void);) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfdisplayitem() creates a new swfdisplayitem object. ... After you define a shape, a text object, a sprite, or a button, you add it to the movie, then use the returned handle to move, rotate, scale, or skew the thing. ... SWFDisplayItem->moveTo ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfdisplayitem.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
1880. SWFMovie->streammp3
PHP Manual . ... unknown) SWFMovie->streammp3 -- Streams a MP3 file. void swfmovie->streammp3 ( string mp3FileName) . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. swfmovie->streammp3() streams the mp3 file mp3FileName . ... php $m = new SWFMovie(); $m->setRate(12.0); $m->streamMp3("distortobass.mp3"); // use your own MP3 // 11.85 seconds at 12.0 fps = 142 frames $m->setFrames(142); header('Content-type: application/x-shockwave-flash'); $m->output(); ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.swfmovie.streammp3.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы