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

search for in the

swf_shapemoveto> <swf_shapelinesolid
Last updated: Fri, 14 Aug 2009

view this page in

swf_shapelineto

(PHP 4)

swf_shapelinetoDessine une ligne

Description

void swf_shapelineto ( float $x , float $y )

Dessine une ligne entre la position courante et le point de coordonnées fournis. La position finale devient alors la position courante.

Liste de paramètres

x

X : coordonnée de la cible.

y

Y : coordonnée de la cible.

Valeurs de retour

Aucune valeur n'est retournée.



add a note add a note User Contributed Notes
swf_shapelineto
mathe at bluemento dot de
15-Sep-2003 03:58
I did make other experience with this function:

swf_startshape ($this->gButton);
  swf_addcolor(0,0,0,0);
  swf_shapelinesolid(1,0,0,0,5);
  swf_shapefillsolid($r,$g,$b,1);
  swf_shapemoveto(0,10);
  swf_shapelineto(60,10);
  swf_shapelineto(60,-5);
  swf_shapelineto(-35,-5);
  swf_shapelineto(-35,10);
swf_endshape($this->gButton);

Here, swf_shapelineto doesnt set the given values to the
current position. In case this would not build a rectangle -
but it does.

swf_shapemoveto> <swf_shapelinesolid
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites