Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hi, i was wondering if its possible 2

Status
Not open for further replies.

martinb7

Programmer
Joined
Jan 5, 2003
Messages
235
Location
GB
hi, i was wondering if its possible to recreate this javascript textbox countdown in flash ( )

That is my website

what it does is everytime you put a character in the textbox, it subtracts 1 from the remaining characters left.

Possible to recreate in Flash MX?

Thanx

Martin
 
dynamic textbox count, input text box input, code on timeline

count.text = 200;
this.onEnterFrame = function(){
y = input.text.length;
count.text = 200 - y;
}

_______________________________________
You know you're old if you can remember when bacon, eggs and sunshine were good for you
 
just because i'm nosy: ::-)

how can one prevent the user from typing more than the specified amount of chars?

regards

tektips.gif
 
input.maxChars = 200;

_______________________________________
You know you're old if you can remember when bacon, eggs and sunshine were good for you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top