<?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/as3</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 17:12:57 GMT</pubDate>
<item>
<title>(ActionScript 3) distriqt NativeMaps AS3 API - populating multiple markers example - koriner</title>
<link>http://snipplr.com/view/71086/distriqt-nativemaps-as3-api--populating-multiple-markers-example/</link>
<description><![CDATA[ <p>Just a simple example script for populating a bunch of MapMarker objects on a Map using the distriqt NativeMaps ANE</p> ]]></description>
<pubDate>Wed, 08 May 2013 08:13:03 GMT</pubDate>
<guid>http://snipplr.com/view/71086/distriqt-nativemaps-as3-api--populating-multiple-markers-example/</guid>
</item>
<item>
<title>(ActionScript 3) Vector sorton - fergc</title>
<link>http://snipplr.com/view/69818/vector-sorton/</link>
<description><![CDATA[ <p>Ordenar vector as3</p> ]]></description>
<pubDate>Thu, 07 Feb 2013 01:57:59 GMT</pubDate>
<guid>http://snipplr.com/view/69818/vector-sorton/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Drawing Shapes (ARC, BURST, DASHED-LINE, GEAR, POLYGON, STAR, WEDGE, LINE) - adrianparr</title>
<link>http://snipplr.com/view/67582/as3-drawing-shapes-arc-burst-dashedline-gear-polygon-star-wedge-line/</link>
<description><![CDATA[ <p>Credit for this goes to Adobe, Ric Ewing, Kevin Williams, Aden Forshaw and Sidney de Koning.</p> ]]></description>
<pubDate>Wed, 03 Oct 2012 22:45:24 GMT</pubDate>
<guid>http://snipplr.com/view/67582/as3-drawing-shapes-arc-burst-dashedline-gear-polygon-star-wedge-line/</guid>
</item>
<item>
<title>(ActionScript 3) embed a font from an external swf - ronniekleinfeldgmailcom</title>
<link>http://snipplr.com/view/66208/embed-a-font-from-an-external-swf/</link>
<description><![CDATA[ <p>embed a font from an external swf</p> ]]></description>
<pubDate>Wed, 18 Jul 2012 18:04:54 GMT</pubDate>
<guid>http://snipplr.com/view/66208/embed-a-font-from-an-external-swf/</guid>
</item>
<item>
<title>(ActionScript 3) Embeding fonts in as3 - ronniekleinfeldgmailcom</title>
<link>http://snipplr.com/view/66207/embeding-fonts-in-as3/</link>
<description><![CDATA[ <p>Embeding fonts in as3</p> ]]></description>
<pubDate>Wed, 18 Jul 2012 18:00:36 GMT</pubDate>
<guid>http://snipplr.com/view/66207/embeding-fonts-in-as3/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Remove Tabs and NewLine Characters - adrianparr</title>
<link>http://snipplr.com/view/65761/as3-remove-tabs-and-newline-characters/</link>
<description><![CDATA[ <p>If you load text in from an XML file that is wrapped in CDATA tags using 'XML.ignoreWhitespace = true' does not work. This function removes the tabs and linebreaks. To have linebreaks use '' tags.</p> ]]></description>
<pubDate>Fri, 22 Jun 2012 19:30:41 GMT</pubDate>
<guid>http://snipplr.com/view/65761/as3-remove-tabs-and-newline-characters/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 MathUtils static class - adrianparr</title>
<link>http://snipplr.com/view/65581/as3-mathutils-static-class/</link>
<description><![CDATA[ <p>Credit goes to Bruno Imbrizi.</p> ]]></description>
<pubDate>Wed, 13 Jun 2012 02:56:19 GMT</pubDate>
<guid>http://snipplr.com/view/65581/as3-mathutils-static-class/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Map a Number within one range to another range - adrianparr</title>
<link>http://snipplr.com/view/65580/as3-map-a-number-within-one-range-to-another-range/</link>
<description><![CDATA[ <p>Credit goes to Bruno Imbrizi.</p> ]]></description>
<pubDate>Wed, 13 Jun 2012 02:53:34 GMT</pubDate>
<guid>http://snipplr.com/view/65580/as3-map-a-number-within-one-range-to-another-range/</guid>
</item>
<item>
<title>(ActionScript 3) Milliseconds to mm:ss:mmmm - fergc</title>
<link>http://snipplr.com/view/65185/milliseconds-to-mmssmmmm/</link>
<description><![CDATA[ <p>Milisegundos a formato minutos, segundos y milesimas</p> ]]></description>
<pubDate>Fri, 25 May 2012 14:38:20 GMT</pubDate>
<guid>http://snipplr.com/view/65185/milliseconds-to-mmssmmmm/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Click-and-Rotate Content - adrianparr</title>
<link>http://snipplr.com/view/64747/as3-clickandrotate-content/</link>
<description><![CDATA[ <p>This code is taken from David Stiller's post on the CommunityMX website. All credit goes to him.</p> ]]></description>
<pubDate>Thu, 26 Apr 2012 19:47:01 GMT</pubDate>
<guid>http://snipplr.com/view/64747/as3-clickandrotate-content/</guid>
</item>
<item>
<title>(ActionScript 3) Debug Window - baconandgames</title>
<link>http://snipplr.com/view/63833/debug-window/</link>
<description><![CDATA[ <p>This is a very simple class that adds an output window to any DisplayObject. You can use this instead of trace()
if you'd like to debug in the browser wihtout having to install the debut player and deal with FlashTracer or any 
of that nonsense.

While I recommend removing all usage of this when your project is complete, you *COULD* simply set the instance of
your DebugWindow enabled to false. This will hide it from view, unregister from all events and stop writing text to
the output window. Removing it from the stage will also unregister the listener events by default

-- USAGE TIPS --

SHIFT + SPACE 	- Toggle visibility of DebugWindow
CTRL + UP 		- Scroll contents of DebugWindow up (CMD on Mac)
CTRL + DOWN		- Scroll contents of DebugWindow down (CMD on Mac)
Double Click	- Hide DebugWindow
Click &amp; Drag	- Move DebugWindow

There are plenty of other minor features I considered adding, but ultimately I wanted to keep it simple and lightweight.</p> ]]></description>
<pubDate>Sat, 10 Mar 2012 06:00:20 GMT</pubDate>
<guid>http://snipplr.com/view/63833/debug-window/</guid>
</item>
<item>
<title>(PHP) AlivePDF download and save to server - vamapaull</title>
<link>http://snipplr.com/view/63604/alivepdf-download-and-save-to-server/</link>
<description><![CDATA[ <p>This PHP code is made to help people using the ActionScript 3 AlivePDF library to save PDF files from a Flash app to a server.

ActionScript 3 AlivePDF save code:
_pdf.save(Method.REMOTE, "save.php", Download.ATTACHMENT, "MyFile.pdf");</p> ]]></description>
<pubDate>Mon, 27 Feb 2012 22:34:11 GMT</pubDate>
<guid>http://snipplr.com/view/63604/alivepdf-download-and-save-to-server/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 getVisibleBounds - adrianparr</title>
<link>http://snipplr.com/view/63449/as3-getvisiblebounds/</link>
<description><![CDATA[ <p>All credit for this goes to Zach Foley (aka Plastic Sturgeon)</p> ]]></description>
<pubDate>Mon, 20 Feb 2012 21:09:35 GMT</pubDate>
<guid>http://snipplr.com/view/63449/as3-getvisiblebounds/</guid>
</item>
<item>
<title>(ActionScript 3) Object Builder - unkiwii</title>
<link>http://snipplr.com/view/63052/object-builder/</link>
<description><![CDATA[ <p>This is a helper class to create objects like if you were calling "apply" on the constructor object. An example:


class MyObject {
    public function MyObject(a, b, c) { ... }
}

// normal object creation
var a:MyObject = new MyObject('a', 'b', 'c');

// using ObjectBuilder
var p:Array = ['a', 'b', 'c'];
var b:MyOBject = ObjectBuilder.buildFromArray(MyObject, p);
</p> ]]></description>
<pubDate>Sat, 04 Feb 2012 04:41:11 GMT</pubDate>
<guid>http://snipplr.com/view/63052/object-builder/</guid>
</item>
<item>
<title>(ActionScript 3) Post to wall using GraphAPI_Web.swc AS3 - Matias</title>
<link>http://snipplr.com/view/63021/post-to-wall-using-graphapiwebswc-as3/</link>
<description><![CDATA[ <p>i assume that the Facebook api has been initialized and i have the "publish_stream permission" the picture can be taken of a particular area of the displayObject</p> ]]></description>
<pubDate>Fri, 03 Feb 2012 08:22:29 GMT</pubDate>
<guid>http://snipplr.com/view/63021/post-to-wall-using-graphapiwebswc-as3/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Fade Toggle - earl</title>
<link>http://snipplr.com/view/62737/as3-fade-toggle/</link>
<description><![CDATA[ <p>this is a toggle for as3 using caurina</p> ]]></description>
<pubDate>Tue, 24 Jan 2012 07:09:30 GMT</pubDate>
<guid>http://snipplr.com/view/62737/as3-fade-toggle/</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 Pie Chart - adrianparr</title>
<link>http://snipplr.com/view/61685/as3-pie-chart/</link>
<description><![CDATA[ <p>Credit goes to http://snipplr.com/users/MaRmAR/</p> ]]></description>
<pubDate>Tue, 06 Dec 2011 03:00:46 GMT</pubDate>
<guid>http://snipplr.com/view/61685/as3-pie-chart/</guid>
</item>
<item>
<title>(ActionScript 3) Basic external XML loader - timr</title>
<link>http://snipplr.com/view/61501/basic-external-xml-loader/</link>
<description><![CDATA[ <p>Loads a specified XML file provided in the class constructor. Dispatches an event when the XML is loaded and ready.</p> ]]></description>
<pubDate>Fri, 02 Dec 2011 21:49:00 GMT</pubDate>
<guid>http://snipplr.com/view/61501/basic-external-xml-loader/</guid>
</item>
<item>
<title>(ActionScript 3) Device Shake – Accelerometer - vamapaull</title>
<link>http://snipplr.com/view/61217/device-shake--accelerometer/</link>
<description><![CDATA[ <p>An easy way to detect shakes on mobile devices with equipped accelerometer.</p> ]]></description>
<pubDate>Sat, 26 Nov 2011 09:26:39 GMT</pubDate>
<guid>http://snipplr.com/view/61217/device-shake--accelerometer/</guid>
</item>
</channel>
</rss>