Using listeners with dynamic textBoxes

This is a discussion on "Using listeners with dynamic textBoxes" within the Flash & Multimedia Forum section. This forum, and the thread "Using listeners with dynamic textBoxes are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 8th, 2007, 10:24
New Member
Join Date: Oct 2006
Location: Hemel Hempstead
Age: 25
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Using listeners with dynamic textBoxes

Hello all!
I'm trying to put an onChanged listener on a dynamic texbox... does anyone know how to do this?

I've tried:



Code: Select all
flag._visible = false;
dynamicBox.onChanged  = function(){
    flag._visible = true;
}
But that only works for input text...

and i've also tried:



Code: Select all
flag._visible = false;
var myListener:Object = new Object();
myListener.onChanged = function(){
    flag._visible = true;
}
dynamicBox.addListener(myListener);
any ideas....

Thanks.
Reply With Quote

Reply

Tags
dynamic, listener, onchanged, textbox

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Binding Textboxes RubyRue ASP.NET Forum 2 Feb 21st, 2008 17:51
How to correctly control one MC with another - custom listeners, classes or strings? iblokh Flash & Multimedia Forum 2 Dec 29th, 2007 07:41
writing a function to verify data inputted in textboxes jayaime JavaScript Forum 2 Jul 4th, 2006 03:29
Lists, Buttons and Textboxes callamac Web Page Design 4 Apr 6th, 2006 13:39
autofill textboxes hamboy Web Page Design 3 Feb 14th, 2006 19:42


All times are GMT. The time now is 22:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43