Quantcast
Channel: AIR Examples
Viewing all articles
Browse latest Browse all 10

Detecting the line-ending character sequence used by the host operating system in Adobe AIR

$
0
0
The following example shows how you can detect the line ending character sequence used by the host operating system in Adobe AIR by using the static File.lineEnding property. <?xml version="1.0" encoding="utf-8"?> <!-- http://airexamples.com/2010/03/13/detecting-the-line-ending-character-sequence-used-by-the-host-operating-system-in-adobe-air/ --> <mx:WindowedApplication name="File_lineEnding_test" xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" status="{Capabilities.os}" height="200">   <mx:Script> <![CDATA[ private function init():void { var arr:Array = File.lineEnding.split(""); arr.forEach(charCodeMe); lbl.text = […]

Viewing all articles
Browse latest Browse all 10

Trending Articles