RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Joan Tan
On Behalf Of Steve PruittSent: Monday, April 25, 2005 2:10 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] enter event for TextInput yes, I put a trace stmt in the function and nothing appears in the flashlog.  drat.  this is to simple not to work.  if it works for others,

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Gordon Smith
Title: Message Could it be because of password="true"?   - Gordon -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 11:24 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] enter event for Tex

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Steve Pruitt
On Behalf Of Steve PruittSent: Monday, April 25, 2005 2:10 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] enter event for TextInput yes, I put a trace stmt in the function and nothing appears in the flashlog.  drat.  this is to simple not to work.  if it works for others,

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Steve Pruitt
AhmedSent: Monday, April 25, 2005 1:30 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] enter event for TextInput Are you sure it's not being invoked? I'd do a little test like:function onEnter(event){   alert("yo");}If that alert pops up - then its being invoked b

Re: [flexcoders] enter event for TextInput

2005-04-25 Thread Tarik Ahmed
Are you sure it's not being invoked? I'd do a little test like: function onEnter(event) {    alert("yo"); } If that alert pops up - then its being invoked but whatever is going on in onEnter isn't as expected. Steve Pruitt wrote: My enter event handler isn't being called for a T

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Joan Tan
That code seems to work for me. Maybe there is something wrong within your onEnter function?  The entire mxml that I ran was just:   http://www.macromedia.com/2003/mxml" backgroundColor="white" > function onEnter(event) {  text1.text='triggered enter';  }   From: flexcoders@yahoogroup