ActionScript Q
ActionScript Q
Out of context: Reply #1
- Started
- Last post
- 1 Response
- 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+