[flexcoders] can NOT call method in component

2006-10-03 Thread boy_trike
in my application, i am asking for time input in many places. right now I have a change=processTime( event) in the text input of each time variable. (my process time parses the input. Of course, this requires that I import the ProcessTime function into each component that uses it. I

Re: [flexcoders] can NOT call method in component

2006-10-03 Thread Michael Schmalle
Hi,Since you are instantiating the component in an Application, the scope is off, comp:TimeText id=tt change=processTime (event) /needs to be comp:TimeText id=tt change=tt.processTime (event) /I know that isnt what you wanted to here but the scope always refers to the application everywhere