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
1069
posted 14 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
1525
posted 14 years ago by cappellin
Turns /n to <br> and /n/n to </p><p>
Usage:
echo stripslashes(nl2br(nls2p($text)));
0
1019
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
1072
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
1463
posted 15 years ago by adrianparr
converts date/time that sharepoint kicks out to m/d/y format.
0
1026
posted 15 years ago by rumremix
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
1112
posted 15 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
1232
posted 15 years ago by adrianparr
Es muss eine Formatierung gespeichert werden (Format :: Formatvorlagen)
Einzutragen in: Format :: Bedingte Formatierung
0
830
posted 15 years ago by tscheckenbach
this will convert bytes to a readable format with 2 decimal places
1
1253
posted 15 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
1576
posted 15 years ago by adrianparr