<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/TextField</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 20 Jun 2013 03:45:54 GMT</pubDate>
<item>
<title>(PHP) Validating textfield name for spaces using javascript. - laxman2021</title>
<link>http://snipplr.com/view/69007/validating-textfield-name-for-spaces-using-javascript/</link>
<description><![CDATA[ <p>Validating textbox using trim(), in javascript.</p> ]]></description>
<pubDate>Fri, 07 Dec 2012 19:19:44 GMT</pubDate>
<guid>http://snipplr.com/view/69007/validating-textfield-name-for-spaces-using-javascript/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Convert TextField LineBreaks to CRLF for Display as Plain Text (Notepad) on Windows - adrianparr</title>
<link>http://snipplr.com/view/61990/as3-convert-textfield-linebreaks-to-crlf-for-display-as-plain-text-notepad-on-windows/</link>
<description><![CDATA[ <p>Linebreaks differ between Flash TextField and a plain text file like Notepad. In this example we convert the html linebreaks in Flash to \r\n</p> ]]></description>
<pubDate>Tue, 20 Dec 2011 02:01:19 GMT</pubDate>
<guid>http://snipplr.com/view/61990/as3-convert-textfield-linebreaks-to-crlf-for-display-as-plain-text-notepad-on-windows/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Insert and Delete Characters at TextField CaretIndex Position - adrianparr</title>
<link>http://snipplr.com/view/60933/as3-insert-and-delete-characters-at-textfield-caretindex-position/</link>
<description><![CDATA[ <p>This code gets the current caretIndex in the textfield and then inserts the specified string at that point. The caretIndex position is then updated using setSelection, ready for the next insertion. This was developed to be used with an on-screen keyboard (for entering text into a textfield when the user is in fullscreen mode). The backspace button is intended to function in the same manner as pressing the delete key on your keyboard.</p> ]]></description>
<pubDate>Thu, 17 Nov 2011 22:09:46 GMT</pubDate>
<guid>http://snipplr.com/view/60933/as3-insert-and-delete-characters-at-textfield-caretindex-position/</guid>
</item>
<item>
<title>(CSS) HTML5 search input appearance - fabricelejeune</title>
<link>http://snipplr.com/view/55409/html5-search-input-appearance/</link>
<description><![CDATA[ <p>This is a simple trick that allows you to design the html5 search input like another input.</p> ]]></description>
<pubDate>Fri, 17 Jun 2011 18:34:15 GMT</pubDate>
<guid>http://snipplr.com/view/55409/html5-search-input-appearance/</guid>
</item>
<item>
<title>(JavaScript) Populate text field in form with radio button value - kbrown</title>
<link>http://snipplr.com/view/55057/populate-text-field-in-form-with-radio-button-value/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 09 Jun 2011 05:06:57 GMT</pubDate>
<guid>http://snipplr.com/view/55057/populate-text-field-in-form-with-radio-button-value/</guid>
</item>
<item>
<title>(ActionScript 3) Limit the number of lines in an input textfield - christowiz</title>
<link>http://snipplr.com/view/52258/limit-the-number-of-lines-in-an-input-textfield/</link>
<description><![CDATA[ <p>I made one adjustment to the code because I was getting one scrolling extra line.

    inputfield.textHeight > inputfield.height
to:

    inputfield.textHeight >= inputfield.height</p> ]]></description>
<pubDate>Mon, 18 Apr 2011 15:05:28 GMT</pubDate>
<guid>http://snipplr.com/view/52258/limit-the-number-of-lines-in-an-input-textfield/</guid>
</item>
<item>
<title>(jQuery) Clear default textfield value on click - dyteq</title>
<link>http://snipplr.com/view/51976/clear-default-textfield-value-on-click/</link>
<description><![CDATA[ <p>No need to create a seperate function for this one. Just one line to clear the default value on click and leave the value when it has been altered.</p> ]]></description>
<pubDate>Tue, 12 Apr 2011 19:58:54 GMT</pubDate>
<guid>http://snipplr.com/view/51976/clear-default-textfield-value-on-click/</guid>
</item>
<item>
<title>(ActionScript 3) MovieClip containing Dynamic TextField - alpha-tweening issues fixed - shuchii</title>
<link>http://snipplr.com/view/51973/movieclip-containing-dynamic-textfield--alphatweening-issues-fixed/</link>
<description><![CDATA[ <p>Whenever experiencing trouble with alpha-tweening a MovieClip that contains (Dynamic) TextFields (TextField remains visible after tweening the MovieClip to alpha = 0), try setting the MovieClip's BlendMode to LAYER.</p> ]]></description>
<pubDate>Tue, 12 Apr 2011 17:56:30 GMT</pubDate>
<guid>http://snipplr.com/view/51973/movieclip-containing-dynamic-textfield--alphatweening-issues-fixed/</guid>
</item>
<item>
<title>(Objective C) Objective-C Left padding on UITextField hack - peetj</title>
<link>http://snipplr.com/view/51844/objectivec-left-padding-on-uitextfield-hack/</link>
<description><![CDATA[ <p>cool hack to add padding to a text field</p> ]]></description>
<pubDate>Sat, 09 Apr 2011 23:53:41 GMT</pubDate>
<guid>http://snipplr.com/view/51844/objectivec-left-padding-on-uitextfield-hack/</guid>
</item>
<item>
<title>(Objective C) UITextField border and background - peetj</title>
<link>http://snipplr.com/view/51757/uitextfield-border-and-background/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 08 Apr 2011 13:20:28 GMT</pubDate>
<guid>http://snipplr.com/view/51757/uitextfield-border-and-background/</guid>
</item>
<item>
<title>(Objective C) UITextField rounded rect - peetj</title>
<link>http://snipplr.com/view/51756/uitextfield-rounded-rect/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 08 Apr 2011 13:14:44 GMT</pubDate>
<guid>http://snipplr.com/view/51756/uitextfield-rounded-rect/</guid>
</item>
<item>
<title>(ActionScript 3) Create a textfield - marzsman</title>
<link>http://snipplr.com/view/51529/create-a-textfield/</link>
<description><![CDATA[ <p>Create a textfield and add a format</p> ]]></description>
<pubDate>Mon, 04 Apr 2011 23:13:07 GMT</pubDate>
<guid>http://snipplr.com/view/51529/create-a-textfield/</guid>
</item>
<item>
<title>(PHP) jQuery: show plain text in a password field and then make it a regular password field on focus - galofre</title>
<link>http://snipplr.com/view/49629/jquery-show-plain-text-in-a-password-field-and-then-make-it-a-regular-password-field-on-focus/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 25 Feb 2011 09:10:03 GMT</pubDate>
<guid>http://snipplr.com/view/49629/jquery-show-plain-text-in-a-password-field-and-then-make-it-a-regular-password-field-on-focus/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 TextHandle Util - TextField made easy - burnandbass</title>
<link>http://snipplr.com/view/48331/as3-texthandle-util--textfield-made-easy/</link>
<description><![CDATA[ <p>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

_color: uint ( default 0x000000, black ) - the color of the textfield</p> ]]></description>
<pubDate>Thu, 03 Feb 2011 15:16:20 GMT</pubDate>
<guid>http://snipplr.com/view/48331/as3-texthandle-util--textfield-made-easy/</guid>
</item>
<item>
<title>(ActionScript 3) Truncate overflow text in a textfield and add an ellipsis (...) - mgeduld</title>
<link>http://snipplr.com/view/47623/truncate-overflow-text-in-a-textfield-and-add-an-ellipsis-/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 21 Jan 2011 02:52:34 GMT</pubDate>
<guid>http://snipplr.com/view/47623/truncate-overflow-text-in-a-textfield-and-add-an-ellipsis-/</guid>
</item>
<item>
<title>(ActionScript 3) Scale text to fit in textField; scale TextField to fit text. - mgeduld</title>
<link>http://snipplr.com/view/47474/scale-text-to-fit-in-textfield-scale-textfield-to-fit-text/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 19 Jan 2011 07:40:49 GMT</pubDate>
<guid>http://snipplr.com/view/47474/scale-text-to-fit-in-textfield-scale-textfield-to-fit-text/</guid>
</item>
<item>
<title>(ActionScript 3) Limit lines in a textfield - martin9999uk</title>
<link>http://snipplr.com/view/46876/limit-lines-in-a-textfield/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 10 Jan 2011 23:23:21 GMT</pubDate>
<guid>http://snipplr.com/view/46876/limit-lines-in-a-textfield/</guid>
</item>
<item>
<title>(ActionScript 3) Input Textfield hint - shuchii</title>
<link>http://snipplr.com/view/45023/input-textfield-hint/</link>
<description><![CDATA[ <p>Showing an input hint in the TextField itself,
hiding it on focus/input,
and showing it again when the input is left empty.</p> ]]></description>
<pubDate>Mon, 29 Nov 2010 22:32:35 GMT</pubDate>
<guid>http://snipplr.com/view/45023/input-textfield-hint/</guid>
</item>
<item>
<title>(ActionScript 3) Force text input to uppercase - feeorin</title>
<link>http://snipplr.com/view/44831/force-text-input-to-uppercase/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 25 Nov 2010 06:39:12 GMT</pubDate>
<guid>http://snipplr.com/view/44831/force-text-input-to-uppercase/</guid>
</item>
<item>
<title>(Other) Creating a text field with as3 - ssolen</title>
<link>http://snipplr.com/view/42175/creating-a-text-field-with-as3/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 13 Oct 2010 10:54:02 GMT</pubDate>
<guid>http://snipplr.com/view/42175/creating-a-text-field-with-as3/</guid>
</item>
</channel>
</rss>