ActionScript Q
ActionScript Q
- Started
- Last post
- 1 Response
- newtasty
Hey,
Can anyone help me, i need an actionscript function that removes any blank spaces from text entered into an input box.
Does anyone have any ideas?
Thanks
- penkz0
I think thats this will get rid of the spaces..
[code]
var my_string = "this have spaces";
new_string = my_string.split(" ");
trace(new_string.join(""));
[/code]cheers
+penkz+