RE: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-28 Thread Mike Mountain
Hi Mike, I didnt know FlashCoders was a place to get one's code reviewed for silly mistakes in logic. Hence I just cleared your way from thinking its an AS3 problem. Anyways glad to know you figured it out. You're right, it's not and I did think it was an AS2 - AS3 translation

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-28 Thread Supriya
, 2006 1:49 PM Subject: RE: [Flashcoders] AS3 scripting, first try - some Q's Hi Mike, I didnt know FlashCoders was a place to get one's code reviewed for silly mistakes in logic. Hence I just cleared your way from thinking its an AS3 problem. Anyways glad to know you figured it out. You're

RE: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-28 Thread Mike Mountain
: [Flashcoders] AS3 scripting, first try - some Q's Well, I was trying to make a light moment. Hope you saw the smiley in the answer. Again this is also a light moment :) . Chill out buddy :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Mike Mountain
OK having a dabble in AS3 for the first time and I ported a simple particle script over to the timeline: [as] import flash.events.Event; var numBots:int = 50; var balls:Array=new Array(); // for(var i=0; i=numBots; i++){ var bl:Ball=new Ball(); var tmpBall=addChild(bl);

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Supriya
scripting, first try - some Q's OK having a dabble in AS3 for the first time and I ported a simple particle script over to the timeline: [as] import flash.events.Event; var numBots:int = 50; var balls:Array=new Array(); // for(var i=0; i=numBots; i++){ var bl:Ball=new Ball(); var tmpBall=addChild

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Supriya
: [Flashcoders] AS3 scripting, first try - some Q's OK having a dabble in AS3 for the first time and I ported a simple particle script over to the timeline: [as] import flash.events.Event; var numBots:int = 50; var balls:Array=new Array(); // for(var i=0; i=numBots; i++){ var bl:Ball=new Ball(); var

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread eric dolecki
- From: Mike Mountain [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, July 27, 2006 9:07 PM Subject: [Flashcoders] AS3 scripting, first try - some Q's OK having a dabble in AS3 for the first time and I ported a simple particle script over

RE: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Mike Mountain
function moveme(event:Event):void{ You aren't passing in an event there... so perhaps that is causing the vomit? The event gets passed auotmatically, it traces out fine On 7/27/06, Supriya [EMAIL PROTECTED] wrote: its not an AS3 problem, its a small problem in your logic in the

RE: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Mike Mountain
for(var i=0; il; i++){ Not for(var i=0; i=l; i++){ M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 27 July 2006 17:17 To: Flashcoders mailing list Subject: RE: [Flashcoders] AS3 scripting, first try - some Q's

RE: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Mike Mountain
Anyone got an answer to the second part: what's the simple AS3 scripting way (I know the class way) of doing myObj.onEnterFrame=function(){ this.x+=1 //Etc. } Cheers Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread eric dolecki
add an event listener to the mc Obj? On 7/27/06, Mike Mountain [EMAIL PROTECTED] wrote: Anyone got an answer to the second part: what's the simple AS3 scripting way (I know the class way) of doing myObj.onEnterFrame=function(){ this.x+=1 //Etc. } Cheers Mike

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Arul Prasad M L
] On Behalf Of Mike Mountain Sent: 27 July 2006 17:17 To: Flashcoders mailing list Subject: RE: [Flashcoders] AS3 scripting, first try - some Q's function moveme(event:Event):void{ You aren't passing in an event there... so perhaps that is causing the vomit? The event gets passed

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Supriya Rao
Hi Mike, I didnt know FlashCoders was a place to get one's code reviewed for silly mistakes in logic. Hence I just cleared your way from thinking its an AS3 problem. Anyways glad to know you figured it out. And for your second question, I had already replied to it. On 7/27/06, Mike Mountain