You could do that witht those classe www.mediaverk.lv/asd
Arrow would be a laine or thin rectangle with triangle on begining or end

2006/8/11, Ravi Marella <[EMAIL PROTECTED]>:

Really sorry:(
The code is intended for drawing elliptical orbits not arrows...sorry
again :( :(

best regards
RaviKiran Marella






-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ravi
Marella
Sent: Friday, August 11, 2006 11:36 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] need help in drawing arrow

The following code worked for me perfectly:
************************************************************************
************************************************************************
********


onClipEvent (load) {
        speed = 5;
        radius = 100;
        xcenter = 250;
        ycenter = 200;
        ellipticalOrbitX = 2;
        ellipticalOrbitY = 1;
        angle =120;
        _root.lineStyle (2);
}
onClipEvent (enterFrame) {
        _x = Math.cos (angle * Math.PI / 180) * radius *
ellipticalOrbitX + xcenter;
        _y = Math.sin (angle * Math.PI / 180) * radius *
ellipticalOrbitY + ycenter;
        _root.lineTo (_x, _y);
        angle += speed;
        if (angle > 359)
        {
                angle -= 360;
        }
}


************************************************************************
************************************************************************
********

u can write the same code on the 1st[onClipEvent (load)] and 2nd frames
[onClipEvent (enterFrame)] and write

************************************************************************
****
gotoandplay(2)
************************************************************************
****

on 3rd frame...


if u 10 objects then all u hav to do is

************************************************************************
****
angle=0;
angleShift=360/10;
************************************************************************
****

and in each object,
************************************************************************
****
angle=angle+angleShift;
************************************************************************
****

this will keep the objects at a perfect distance in the orbit...

hope it'll be helpful 4 u...

best regards
RaviKiran Marella






-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rutul
Patel
Sent: Thursday, August 10, 2006 9:01 PM
To: Flashcoders mailing list
Subject: [Flashcoders] need help in drawing arrow

Hi people,
anybody know how to write AS of drawing arrow.
if anybody has can anybody tell me how?.
thanks
Rutul Patel
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to