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

2006-07-28 Thread Mike Mountain
list > Subject: Re: [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 :) ___ Flashcoder

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

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 p

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

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

2006-07-27 Thread Arul Prasad M L
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 i

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 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 se

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

2006-07-27 Thread Mike Mountain
for(var i=0; i -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
> > 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

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

2006-07-27 Thread eric dolecki
function moveme(event:Event):void{ You aren't passing in an event there... so perhaps that is causing the vomit? - Eric On 7/27/06, Supriya <[EMAIL PROTECTED]> wrote: its not an AS3 problem, its a small problem in your logic in the function moveme find it out :) - Original Message ---

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

2006-07-27 Thread Supriya
for the second question myObj.addEventListener("enterFrame",fun) function fun(evt) { this.x++ } Supriya. - Original Message - From: "Mike Mountain" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, July 27, 2006 9:07 PM Subject: [Flashcoders] AS3 scripting, first

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

2006-07-27 Thread Supriya
its not an AS3 problem, its a small problem in your logic in the function moveme find it out :) - Original Message - From: "Mike Mountain" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, July 27, 2006 9:07 PM Subject: [Flashcoders] AS3 scripting, first try - some Q'