Welcome To Snipplr
Everyone's Recent Snippets Tagged format
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Very simple and basic TextHandle class, extends TextField... You can extend to fit your needs.
Basic usage:
var a:TextHandle = new TextHandle("some text");
addChild(a)
Optional params:
_size: uint ( default 22 ) - size of the textfiled...
1
840
posted 13 years ago by burnandbass
The code works if and only if your system is using English(United States) date format (i.e. "Web 05/11/2011").
If your systems is using English(United Kingdom) date format just replace %%B in the first and third rows with %%A.
0
1248
posted 13 years ago by cappellin
Turns /n to <br> and /n/n to </p><p>
Usage:
echo stripslashes(nl2br(nls2p($text)));
0
772
posted 14 years ago by jmiller
Assumes that the record has a `name` field which represents the name of the location and always has a defined two character `country` field.
0
813
posted 14 years ago by iloveitaly
To style the text in a TextArea component, create a TextFormat object and pass it to the TextArea's setStyle method.
0
1145
posted 14 years ago by adrianparr
This code removes all the spaces and then inserts a single space so that the there are only 3 characters on the right-hand side (the inward code).
0
879
posted 14 years ago by adrianparr
This returns a string with a single space after the fifth character.
Useful for displaying a UK mobile number which is easy to read.
0
957
posted 14 years ago by adrianparr
Es muss eine Formatierung gespeichert werden (Format :: Formatvorlagen)
Einzutragen in: Format :: Bedingte Formatierung
0
633
posted 14 years ago by tscheckenbach
this will convert bytes to a readable format with 2 decimal places
1
1014
posted 14 years ago by rondog
Format a number so it is more humanly readable. It allows for setting the number of decimal places (inc. adding 0000s to the end) and separating thousands with a comma.
Example usage:
trace(numberFormat(1234.695, 2, true, false));
// Output:...
0
1282
posted 14 years ago by adrianparr