From e34684d2811b9042f534c2cfad32c9256df574a4 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 2 Jun 2004 19:04:54 +0000 Subject: [PATCH] fixed fonts. --- doc/swfc.xml | 65 +++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 39 insertions(+), 26 deletions(-) diff --git a/doc/swfc.xml b/doc/swfc.xml index 00b6916..c5b0ca8 100644 --- a/doc/swfc.xml +++ b/doc/swfc.xml @@ -35,8 +35,8 @@ Line breaking: Links: - http://www.quiss.org OR - Quiss + http://www.quiss.org OR + Quiss Shell scripts, commands to execute: @@ -253,8 +253,7 @@ them for clipping: .flash name="text5.swf" .font courier "Courier.swf" -.font helvetica "Helvetica.swf" -.text hithere text="HELLO" font=courier size=50% +.text hithere text="HELLO" font=courier size=200% .swf scene Scenery50.swf .frame 0 @@ -274,10 +273,9 @@ which is used here together with the alpha parameter of .change: .flash name="text6.swf" -.font courier "Courier.swf" -.font helvetica "Helvetica.swf" -.text hello text="HELLO" font=helvetica size=50% color=blue -.text world text="WORLD" font=helvetica size=50% color=red +.font times "Times.swf" +.text hello text="HELLO" font=times size=100% color=blue +.text world text="WORLD" font=times size=100% color=red .frame 0 .put hello pin=center x=50 y=50 @@ -321,6 +319,14 @@ which is used here together with the alpha parameter of .change: .end +Or, for much more interesting ActionScript examples, see +Laurent Lalanne's +Flash Eyes +or the +source +of Jean-Michel Sarlat's +Mandelbrot explorer. + @@ -340,17 +346,18 @@ once the cursor is over it. .flash name="button1.swf" fps=50 -.box box1 color=white fill=#336633 width=100 height=100 .box box2 color=white fill=#99cc99 width=150 height=150 +.box box1 color=white fill=#336633 width=50 height=50 +.box box2 color=white fill=#99cc99 width=100 height=100 .button mybutton1 - .show box1 as=shape x=50 y=50 - .show box2 as=hover x=25 y=25 + .show box1 as=shape x=25 y=25 + .show box2 as=hover x=12.5 y=12.5 .end .frame 0 .put b1=mybutton1 - .put b2=mybutton1 x=200 red=+255 - .put b3=mybutton1 y=200 green=+255 - .put b4=mybutton1 x=200 y=200 blue=+255 + .put b2=mybutton1 x=100 red=+255 + .put b3=mybutton1 y=100 green=+255 + .put b4=mybutton1 x=100 y=100 blue=+255 .end

@@ -381,32 +388,38 @@ There are four allowed parameters to as:

+ -- 1.7.10.4