Re: [Flashcoders] Flash CS3 an Mac - compiler errors with SVN-folders

2007-09-02 Thread Mathis Moder
Yeah, seems all greater projects are moving towards Flex as compiler. Sad thing is, with the usual Flash-update strategy (how many fixes were released for Flash 8?) we'll likely have to live with this problem. That's annoying. Bit of: Flash really is for designers, Flex is for coders. On

[Flashcoders] Importing illustrator files

2007-09-02 Thread Lee Marshall
I am creating some vector based illustration in Adobe illustrator, exporting them to SWFs and the importing them into Flash. The problem is that the lines of text come in separate text fields and even now and again some characters are separate fields. Does anyone have a good routine to

Re: [Flashcoders] Site effect

2007-09-02 Thread 2lakes
What? No takers on this? WOW i think it's amazing as well. Love some idea of the origins cheers Ian On 30/08/2007, at 3:28 AM, eric e. dolecki wrote: http://www.checklandkindleysides.com/ those paper things are amazing looking... think they were done via 3D? or what? Incredibly

Re: [Flashcoders] Importing illustrator files

2007-09-02 Thread eka
Hello :) The best way... use FlashCS3 and Illustrator CS3 with a full compatibility and an import tools to import AI, EPS and PSD files in Flash and keep the TextField behaviours between all softwares. EKA+ :) 2007/9/2, Lee Marshall [EMAIL PROTECTED]: I am creating some vector based

[Flashcoders] as3 code!!

2007-09-02 Thread [p e r c e p t i c o n]
greetings experts! way back in the days of as2 you could do something like this... this[somevarname+someIndex] = new Something(); ...and i'm wondering how you do something like this in as3i've extended the sprite class and need to create items similar to this, but it won't let me cheers

Re: [Flashcoders] as3 code!!

2007-09-02 Thread eka
Hello :) In AS3 in your main class who extends the Sprite class... if you use the flash.utils.describeType function you can see the Sprite class isn't dynamic : package { import flash.utils.describeType; public class Test extends Sprite { public function Test() {

Re: [Flashcoders] AS3 Events, Delegates and passing parameters

2007-09-02 Thread eka
Hello :) it's not a problem ;) only a supplement to highlight this feature. For me i think the clone() method call alway in the dispatch event isn't the better fast solution to dispatch the events ... but it's an other story ;) EKA+ :) 2007/9/1, Muzak [EMAIL PROTECTED]: I don't see why

[Flashcoders] Applying easing effect to type effect

2007-09-02 Thread Omar Fouad
Hi, i got the following code: effect = function (txt) { string = txt; total = string.length; var ta:Array =[] for (i=0;itotal;i++) { ta.push(string.substr(0, i+1)) } i=0; onEnterFrame = function () { if(itotal-1) { i++ text.text = ta[i] +_; }else{ text.text = txt; delete

[Flashcoders] Flash SC3 and Windows 2000?

2007-09-02 Thread natalia Vikhtinskaya
Hi Will Flash SC3 work under Windows 2000? Had anybody this experiment? Thanks in advance. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Site effect

2007-09-02 Thread Gerry Creighton
I'll agree with you...it is amazing, good transitions. Gerry On Sep 2, 2007, at 7:35 AM, 2lakes wrote: What? No takers on this? WOW i think it's amazing as well. Love some idea of the origins cheers Ian On 30/08/2007, at 3:28 AM, eric e. dolecki wrote:

Re: [Flashcoders] as3 code!!

2007-09-02 Thread T. Michael Keesey
On 9/1/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: greetings experts! way back in the days of as2 you could do something like this... this[somevarname+someIndex] = new Something(); Even in AS2, it seems that this would be better done with an array. var somethings:Array = [];

Re: [Flashcoders] Site effect

2007-09-02 Thread T. Michael Keesey
Really nice! I'm pretty sure those were done in some 3D program and then imported as image sequences.(I'd guess video, but they don't seem to have any artifacts, and playing video backwards doesn't look that smooth.) On 9/2/07, 2lakes [EMAIL PROTECTED] wrote: What? No takers on this? WOW i

Re: [Flashcoders] AS3 Events, Delegates and passing parameters

2007-09-02 Thread eka
Hello :) for me it's exist three developpers : 1 - the beginners ... all informations it's important for it. 2 - The AS1/AS2 developper who read the list to understand the AS3 and not develop with AS3 for the moment... All discussion over all difference with the AS2 can be important. 3 - The

Re: [Flashcoders] as3 code!!

2007-09-02 Thread eka
Hello :) Yes an Array can be better :) But in my experience i prefere use the native flash.utils.Dictionnary class or a custom HashMap implementation based on the Java Collections like it : http://svn1.cvsdude.com/osflash/vegas/AS3/trunk/src/vegas/data/map/HashMap.as

Re: [Flashcoders] as3 code!!

2007-09-02 Thread [p e r c e p t i c o n]
thanks guys! the array idea is exactly what i didi just don't know why it took so long to come to me...i just got stuck in this one way of thinking, but thanks so much for the suggestions...i'm trying to learn as3 and flex and fms and air while i'm in-between jobs and my old bad habits (that

Re: [Flashcoders] Flash SC3 and Windows 2000?

2007-09-02 Thread [p e r c e p t i c o n]
yes, i've tried...cs3 doesn't work using windows 2000 you need xp or vista best p On 9/1/07, natalia Vikhtinskaya [EMAIL PROTECTED] wrote: Hi Will Flash SC3 work under Windows 2000? Had anybody this experiment? Thanks in advance. ___

RE: [Flashcoders] AS3 Events, Delegates and passing parameters

2007-09-02 Thread Kerry Thompson
EKA+ wrote: The event model concept it's not very for a newbee POO developper I understand your point, and agree. I must have been asleep at the switch, though. What is a POO developer? Cordially, Kerry Thompson ___