Re: [Flashcoders] Coding a circular preloader

2007-08-07 Thread Omar Fouad
/ _ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jesse Graupmann Sent: Monday, August 06, 2007 4:24 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Coding a circular preloader Using the arc prototype ( AS 1/2 ) from

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Ivan Dembicki
Hello Omar, try this: http://proto.layer51.com/d.aspx?f=388 -- iv ___ 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

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
Woah!!! too complicated... On 8/6/07, Ivan Dembicki [EMAIL PROTECTED] wrote: Hello Omar, try this: http://proto.layer51.com/d.aspx?f=388 -- iv ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
that example is not working.,. On 8/6/07, Omar Fouad [EMAIL PROTECTED] wrote: Woah!!! too complicated... On 8/6/07, Ivan Dembicki [EMAIL PROTECTED] wrote: Hello Omar, try this: http://proto.layer51.com/d.aspx?f=388 -- iv ___

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Ivan Dembicki
Hello Omar, possible... it's very old example. try at this: function drawSegment(target, rx, ry, x, y, sgm, s1, s2) { var rad = Math.PI/180; if (!s1 and !s2 or s1 == s2) { var grad = 360; var segm = grad/sgm; var x1 = rx+x;

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
ok i got something better and faster. I downloaded some methods from http://www.adobe.com/devnet/flash/articles/adv_draw_methods.html. in this library there is an .as file wich lets u draw wedges easily ( drawWedges.as) but infortunately it doesnt support easing yet.. I am trying to add an

RE: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Palmer, Jim
Just another bit of actionscript butchery here for a circular preloader that I use all over the place in my apps and pages... http://www.overset.com/2006/09/27/flash-wait-animation-ie-browser-throbber/ -- Jim Palmer ! Mammoth Web Operations -Original Message- From: [EMAIL PROTECTED]

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Eric Walton
you could try this. http://www.flashkit.com/movies/Animations/Vector_Animations/People/Dancing_-DrF-11618/index.php On 8/6/07, Omar Fouad [EMAIL PROTECTED] wrote: Folks i was just wondering how to create a circular preloader with actionscript. I thought about drawing many wedges increasing

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
Eric and Palmers thanks so much, i found something interesting here.. http://www.styluscanada.com/ Note the white preloader.. This is what i am talking about exactly... -- Omar M. Fouad - Digital Emotions http://www.omarfouad.net This e-mail and any attachment is for authorised use by the

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Steven Sacks
I jumped on this thread late, but it seems to me that the best/easiest way to accomplish that circular preloader like you saw on that photography site is with a 100 frame movieclip that contains a mask that goes from frame 1-100 revealing a circle underneath. It would probably take you all of

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
This way no there would be no easing... And ma boss say he wants it with actionscript *GR^ On 8/6/07, Steven Sacks [EMAIL PROTECTED] wrote: I jumped on this thread late, but it seems to me that the best/easiest way to accomplish that circular preloader like you saw on that photography

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Steven Sacks
Easing? You're showing linear data. A visual representation of a number from 0-100. I'm not sure how easing fits into this. Your boss sounds like a real genius because it's absolutely brilliant to force somebody to spend many hours building something that could be built in 5 minutes -

RE: [Flashcoders] Coding a circular preloader

2007-08-06 Thread David Ngo
] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Monday, August 06, 2007 2:38 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Coding a circular preloader Easing? You're showing linear data. A visual representation of a number from 0-100. I'm not sure how easing

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Omar Fouad
Hahaha Steven :D that was a good one ;). Thanks david.. but I don't have it.. i'll try to convince my boss. But i would like to know the same how that could be achieved like in the website. -- Omar M. Fouad - Digital Emotions http://www.omarfouad.net This e-mail and any attachment is for

RE: [Flashcoders] Coding a circular preloader

2007-08-06 Thread David Ngo
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Omar Fouad Sent: Monday, August 06, 2007 5:09 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Coding a circular preloader Hahaha Steven :D that was a good one ;). Thanks david.. but I don't have it.. i'll try to convince my

RE: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Jesse Graupmann
Of Omar Fouad Sent: Monday, August 06, 2007 2:09 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Coding a circular preloader Hahaha Steven :D that was a good one ;). Thanks david.. but I don't have it.. i'll try to convince my boss. But i would like to know the same how

Re: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Muzak
- Original Message - From: Steven Sacks [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, August 06, 2007 8:38 PM Subject: Re: [Flashcoders] Coding a circular preloader Easing? You're showing linear data. A visual representation of a number from 0-100. I'm

RE: [Flashcoders] Coding a circular preloader

2007-08-06 Thread Jesse Graupmann
@chattyfig.figleaf.com Subject: RE: [Flashcoders] Coding a circular preloader Using the arc prototype ( AS 1/2 ) from formequalsfunction draw methods; http://www.formequalsfunction.com/downloads/drawmethods.html and Tweener ( AS 2 ) from http://code.google.com/p/tweener/ I put together a simple tween version