Re: [Flashcoders] AS3 - Code problem, can anyone help?

2008-10-23 Thread Kenneth Kawamoto
: FlashDev [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 22, 2008 8:32 PM Subject: [Flashcoders] AS3 - Code problem, can anyone help? Hi Guys Im trying to write a little piece of code to stop the submit button of a form be active until the form

[Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread FlashDev
Hi Guys Im trying to write a little piece of code to stop the submit button of a form be active until the form fields have been completely filled in, its a really simple for consisting of 1 form field and 1 checkbox, ive had a go at writing some code of my own but for some reason flash quits

Re: [Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread Paul Andrews
flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 22, 2008 8:32 PM Subject: [Flashcoders] AS3 - Code problem, can anyone help? Hi Guys Im trying to write a little piece of code to stop the submit button of a form be active until the form fields have been completely filled in, its

Re: [Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread jonathan howe
- Original Message - From: FlashDev [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 22, 2008 8:32 PM Subject: [Flashcoders] AS3 - Code problem, can anyone help? Hi Guys Im trying to write a little piece of code to stop the submit button

Re: [Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread sebastian
@chattyfig.figleaf.com Sent: Wednesday, October 22, 2008 8:32 PM Subject: [Flashcoders] AS3 - Code problem, can anyone help? Hi Guys Im trying to write a little piece of code to stop the submit button of a form be active until the form fields have been completely filled in, its a really simple

Re: [Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread Ashim D'Silva
: Wednesday, October 22, 2008 8:32 PM Subject: [Flashcoders] AS3 - Code problem, can anyone help? Hi Guys Im trying to write a little piece of code to stop the submit button of a form be active until the form fields have been completely filled in, its a really simple for consisting of 1 form field

Re: [Flashcoders] as3 code!!

2007-09-03 Thread [p e r c e p t i c o n]
eka, thanks for the link...i can see many uses for it in the future p On 9/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: 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

Re: [Flashcoders] as3 code!!

2007-09-03 Thread T. Michael Keesey
On 9/2/07, eka [EMAIL PROTECTED] wrote: 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 : Good point. But if you really just need to index something by

[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 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] 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