<?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/language/actionscript-3/tags/object</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 05:16:36 GMT</pubDate>
<item>
<title>(ActionScript 3) Sort a object array - Narayon</title>
<link>http://snipplr.com/view/63712/sort-a-object-array/</link>
<description><![CDATA[ <p>Sorts an array of objects using the native sortOn method</p> ]]></description>
<pubDate>Mon, 05 Mar 2012 13:23:33 GMT</pubDate>
<guid>http://snipplr.com/view/63712/sort-a-object-array/</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) Trial period - burnandbass</title>
<link>http://snipplr.com/view/62217/trial-period/</link>
<description><![CDATA[ <p>Use this if you need to make "trial period" to your app with Shared Objects. It is veri simple to use:

if(Validator.isActive(0,0,1)){
				trace("ENTER");
			} else {
				trace("YOUR DEMO IS OVER");
			}

this demo will be active only 1 minute. Pass the validor Validator.isActive(days,hours,minutes) number of days, hours and minutes and it will return boolean.</p> ]]></description>
<pubDate>Mon, 02 Jan 2012 04:45:15 GMT</pubDate>
<guid>http://snipplr.com/view/62217/trial-period/</guid>
</item>
<item>
<title>(ActionScript 3) removeAllChildren - okhy</title>
<link>http://snipplr.com/view/58670/removeallchildren/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 14 Sep 2011 16:28:59 GMT</pubDate>
<guid>http://snipplr.com/view/58670/removeallchildren/</guid>
</item>
<item>
<title>(ActionScript 3) Remove and null all children of a display object container - radykal</title>
<link>http://snipplr.com/view/58071/remove-and-null-all-children-of-a-display-object-container/</link>
<description><![CDATA[ <p>I create this recursive function to remove and null all children inside a display object container.</p> ]]></description>
<pubDate>Sun, 21 Aug 2011 23:52:08 GMT</pubDate>
<guid>http://snipplr.com/view/58071/remove-and-null-all-children-of-a-display-object-container/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Load and access JSON data example - adrianparr</title>
<link>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</link>
<description><![CDATA[ <p>For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib</p> ]]></description>
<pubDate>Fri, 08 Jul 2011 05:33:20 GMT</pubDate>
<guid>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</guid>
</item>
<item>
<title>(ActionScript 3) ActionScript 3 Delete an Object Function - scottwatkins</title>
<link>http://snipplr.com/view/51667/actionscript-3-delete-an-object-function/</link>
<description><![CDATA[ <p>This function will delete and object and mark it for deletion with gc.</p> ]]></description>
<pubDate>Thu, 07 Apr 2011 01:54:26 GMT</pubDate>
<guid>http://snipplr.com/view/51667/actionscript-3-delete-an-object-function/</guid>
</item>
<item>
<title>(ActionScript 3) Convert ArrayCollection or Object to XML - msdevweb</title>
<link>http://snipplr.com/view/49957/convert-arraycollection-or-object-to-xml/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 03 Mar 2011 06:08:58 GMT</pubDate>
<guid>http://snipplr.com/view/49957/convert-arraycollection-or-object-to-xml/</guid>
</item>
<item>
<title>(ActionScript 3) Returns a new object of the same Class - JaaQ</title>
<link>http://snipplr.com/view/48288/returns-a-new-object-of-the-same-class/</link>
<description><![CDATA[ <p>This function returns a new instance of the class it receives.</p> ]]></description>
<pubDate>Thu, 03 Feb 2011 00:38:24 GMT</pubDate>
<guid>http://snipplr.com/view/48288/returns-a-new-object-of-the-same-class/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Convert An Object To A Class By Name - adrianparr</title>
<link>http://snipplr.com/view/47559/as3-convert-an-object-to-a-class-by-name/</link>
<description><![CDATA[ <p>Here is an example of a sound that is in a library with the class field set to MySound.</p> ]]></description>
<pubDate>Thu, 20 Jan 2011 03:55:19 GMT</pubDate>
<guid>http://snipplr.com/view/47559/as3-convert-an-object-to-a-class-by-name/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Shared Object Manager - adrianparr</title>
<link>http://snipplr.com/view/47550/as3-shared-object-manager/</link>
<description><![CDATA[ <p>Credit for this goes to Terry Paton</p> ]]></description>
<pubDate>Thu, 20 Jan 2011 02:21:20 GMT</pubDate>
<guid>http://snipplr.com/view/47550/as3-shared-object-manager/</guid>
</item>
<item>
<title>(ActionScript 3) Loop through object properties - martin9999uk</title>
<link>http://snipplr.com/view/47506/loop-through-object-properties/</link>
<description><![CDATA[ <p>see http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/statements.html?filter_flex=4.1&amp;filter_flashplayer=10.1&amp;filter_air=2#for..in for details</p> ]]></description>
<pubDate>Wed, 19 Jan 2011 21:33:56 GMT</pubDate>
<guid>http://snipplr.com/view/47506/loop-through-object-properties/</guid>
</item>
<item>
<title>(ActionScript 3) Compare and replace within objects - martin9999uk</title>
<link>http://snipplr.com/view/46878/compare-and-replace-within-objects/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 10 Jan 2011 23:25:01 GMT</pubDate>
<guid>http://snipplr.com/view/46878/compare-and-replace-within-objects/</guid>
</item>
<item>
<title>(ActionScript 3) auto register object aliases for remoting - away4m</title>
<link>http://snipplr.com/view/44487/auto-register-object-aliases-for-remoting/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 20 Nov 2010 08:46:25 GMT</pubDate>
<guid>http://snipplr.com/view/44487/auto-register-object-aliases-for-remoting/</guid>
</item>
<item>
<title>(ActionScript 3) Remove an Object, iPhone App Style - Activetuts</title>
<link>http://snipplr.com/view/44425/remove-an-object-iphone-app-style/</link>
<description><![CDATA[ <p>How to create a delete effect inspired by the iPhone iOS interface. By Carlos Yanez.</p> ]]></description>
<pubDate>Fri, 19 Nov 2010 19:18:31 GMT</pubDate>
<guid>http://snipplr.com/view/44425/remove-an-object-iphone-app-style/</guid>
</item>
<item>
<title>(ActionScript 3) Create a Flash SharedObject (Flash Cookie) - carbonr</title>
<link>http://snipplr.com/view/41396/create-a-flash-sharedobject-flash-cookie/</link>
<description><![CDATA[ <p>This snippet will help create a flashSharedObject a.k.a Flash Cookie, which much better than conventional cookies since they remain through all browsers and cannot be erased by the user using traditional cookie erasing methods</p> ]]></description>
<pubDate>Sun, 03 Oct 2010 19:22:55 GMT</pubDate>
<guid>http://snipplr.com/view/41396/create-a-flash-sharedobject-flash-cookie/</guid>
</item>
<item>
<title>(ActionScript 3) Remove All Children From Display Object - bshantz</title>
<link>http://snipplr.com/view/41347/remove-all-children-from-display-object/</link>
<description><![CDATA[ <p>The cleanest and most compact way I\'ve seen to empty out a display object.</p> ]]></description>
<pubDate>Sat, 02 Oct 2010 13:39:58 GMT</pubDate>
<guid>http://snipplr.com/view/41347/remove-all-children-from-display-object/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 soundTransformObject - one984</title>
<link>http://snipplr.com/view/33920/as3-soundtransformobject/</link>
<description><![CDATA[ <p>Basic way to sound controlling in a swf</p> ]]></description>
<pubDate>Wed, 05 May 2010 18:33:21 GMT</pubDate>
<guid>http://snipplr.com/view/33920/as3-soundtransformobject/</guid>
</item>
<item>
<title>(ActionScript 3) Trace Object - petterdr</title>
<link>http://snipplr.com/view/31121/trace-object/</link>
<description><![CDATA[ <p>replace event.info with the object name</p> ]]></description>
<pubDate>Thu, 08 Apr 2010 18:55:08 GMT</pubDate>
<guid>http://snipplr.com/view/31121/trace-object/</guid>
</item>
<item>
<title>(ActionScript 3) ActionScript 3 print_r - frankyfish</title>
<link>http://snipplr.com/view/29913/actionscript-3-printr/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 17 Mar 2010 15:10:57 GMT</pubDate>
<guid>http://snipplr.com/view/29913/actionscript-3-printr/</guid>
</item>
</channel>
</rss>