<?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/loader</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 21:15:40 GMT</pubDate>
<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) AS3 Loading and Accessing fonts in external SWF at Runtime - adrianparr</title>
<link>http://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime/</link>
<description><![CDATA[ <p>These two classes demonstrate how to create an external font SWF that contains embedded fonts, and how to then load that external font SWF and access and use the fonts inside it.</p> ]]></description>
<pubDate>Wed, 20 Jul 2011 21:01:41 GMT</pubDate>
<guid>http://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime/</guid>
</item>
<item>
<title>(ActionScript 3) Load image - marzsman</title>
<link>http://snipplr.com/view/51522/load-image/</link>
<description><![CDATA[ <p>Load an image</p> ]]></description>
<pubDate>Mon, 04 Apr 2011 23:01:56 GMT</pubDate>
<guid>http://snipplr.com/view/51522/load-image/</guid>
</item>
<item>
<title>(ActionScript 3) Easy XML Loading util - burnandbass</title>
<link>http://snipplr.com/view/49415/easy-xml-loading-util/</link>
<description><![CDATA[ <p>Simple usage:

var xmlLoader:LoadXMLUtil = new LoadXMLUtil("path_to_xml.xml");
xmlLoader.addEventListener(Event.COMPLETE, onLoaderComplete);

private function onLoaderComplete(event:Event):void{
			trace("Loaded XML: ");
			trace(xmlLoader.xml);
		}</p> ]]></description>
<pubDate>Tue, 22 Feb 2011 22:13:43 GMT</pubDate>
<guid>http://snipplr.com/view/49415/easy-xml-loading-util/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Track Loader Progress - adrianparr</title>
<link>http://snipplr.com/view/44948/as3-track-loader-progress/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 27 Nov 2010 02:27:26 GMT</pubDate>
<guid>http://snipplr.com/view/44948/as3-track-loader-progress/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Loading SWF Files Cross-Domain - adrianparr</title>
<link>http://snipplr.com/view/35252/as3-loading-swf-files-crossdomain/</link>
<description><![CDATA[ <p>From the Big Spaceship Labs website.
This is a useful workaround for the following error message ...
SecurityError: Error #2142: Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property.</p> ]]></description>
<pubDate>Thu, 27 May 2010 05:13:06 GMT</pubDate>
<guid>http://snipplr.com/view/35252/as3-loading-swf-files-crossdomain/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Loading and Displaying an External SWF File - adrianparr</title>
<link>http://snipplr.com/view/31920/as3-loading-and-displaying-an-external-swf-file/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 15 Apr 2010 05:42:58 GMT</pubDate>
<guid>http://snipplr.com/view/31920/as3-loading-and-displaying-an-external-swf-file/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Trace LoaderInfo Properties - adrianparr</title>
<link>http://snipplr.com/view/31765/as3-trace-loaderinfo-properties/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 14 Apr 2010 09:28:03 GMT</pubDate>
<guid>http://snipplr.com/view/31765/as3-trace-loaderinfo-properties/</guid>
</item>
<item>
<title>(ActionScript 3) ImageLoader - elliotrock</title>
<link>http://snipplr.com/view/24978/imageloader/</link>
<description><![CDATA[ <p>intialize it like:

var newLoader: ImageLoader();
newLoader.load( image_url.jpg ) ;
if (newLoader.progress == 100 ) {
  addChild ( newLoader.newLoader.content as Bitmap );
}

Its in a very basic form, best to dispatch an event from the loaded method back to where you initlize it.</p> ]]></description>
<pubDate>Thu, 17 Dec 2009 18:53:16 GMT</pubDate>
<guid>http://snipplr.com/view/24978/imageloader/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Self Preloader - nalmeida</title>
<link>http://snipplr.com/view/24604/as3-self-preloader/</link>
<description><![CDATA[ <p>Add the code at the first frame.</p> ]]></description>
<pubDate>Fri, 11 Dec 2009 08:43:19 GMT</pubDate>
<guid>http://snipplr.com/view/24604/as3-self-preloader/</guid>
</item>
<item>
<title>(ActionScript 3) AS3: Image Loader - visualadvance</title>
<link>http://snipplr.com/view/17893/as3-image-loader/</link>
<description><![CDATA[ <p>A simple way to load images into different holders. Not an end-all solution but its the basics.</p> ]]></description>
<pubDate>Tue, 04 Aug 2009 14:26:23 GMT</pubDate>
<guid>http://snipplr.com/view/17893/as3-image-loader/</guid>
</item>
<item>
<title>(ActionScript 3) XML Loader - orazal</title>
<link>http://snipplr.com/view/16768/xml-loader/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 08 Jul 2009 07:16:37 GMT</pubDate>
<guid>http://snipplr.com/view/16768/xml-loader/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Image Loader with circular preloader spinner - Winkyboy</title>
<link>http://snipplr.com/view/15958/as3-image-loader-with-circular-preloader-spinner/</link>
<description><![CDATA[ <p>Not a really elegant design, but it lets you mess around with the loading code easily.</p> ]]></description>
<pubDate>Mon, 15 Jun 2009 16:12:17 GMT</pubDate>
<guid>http://snipplr.com/view/15958/as3-image-loader-with-circular-preloader-spinner/</guid>
</item>
<item>
<title>(ActionScript 3) AS3: Load Movie (URLRequest) - visualadvance</title>
<link>http://snipplr.com/view/15560/as3-load-movie-urlrequest/</link>
<description><![CDATA[ <p>Just a quick reference for myself of the basics for loading a movie.</p> ]]></description>
<pubDate>Fri, 05 Jun 2009 12:07:52 GMT</pubDate>
<guid>http://snipplr.com/view/15560/as3-load-movie-urlrequest/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Loader - Winkyboy</title>
<link>http://snipplr.com/view/15173/as3-loader/</link>
<description><![CDATA[ <p>A simple, well-commented script with a working example of how to load an external SWF into Flash using actionscript3.</p> ]]></description>
<pubDate>Tue, 19 May 2009 14:44:40 GMT</pubDate>
<guid>http://snipplr.com/view/15173/as3-loader/</guid>
</item>
<item>
<title>(ActionScript 3) Loader Context - forchid</title>
<link>http://snipplr.com/view/14908/loader-context/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 11 May 2009 11:36:47 GMT</pubDate>
<guid>http://snipplr.com/view/14908/loader-context/</guid>
</item>
<item>
<title>(ActionScript 3) The three different LoaderContext domain types - alexaivars</title>
<link>http://snipplr.com/view/14794/the-three-different-loadercontext-domain-types/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 07 May 2009 04:22:14 GMT</pubDate>
<guid>http://snipplr.com/view/14794/the-three-different-loadercontext-domain-types/</guid>
</item>
<item>
<title>(ActionScript 3) Load external swf with loader class - mrbassman12</title>
<link>http://snipplr.com/view/13481/load-external-swf-with-loader-class/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 26 Mar 2009 11:18:44 GMT</pubDate>
<guid>http://snipplr.com/view/13481/load-external-swf-with-loader-class/</guid>
</item>
<item>
<title>(ActionScript 3) return the domain (including protocol)  from the loaderURL, no trailing slash - starpause</title>
<link>http://snipplr.com/view/10503/return-the-domain-including-protocol--from-the-loaderurl-no-trailing-slash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 15 Dec 2008 12:18:40 GMT</pubDate>
<guid>http://snipplr.com/view/10503/return-the-domain-including-protocol--from-the-loaderurl-no-trailing-slash/</guid>
</item>
<item>
<title>(ActionScript 3) AS3: Placing an Overlay Over an Image - chrisaiv</title>
<link>http://snipplr.com/view/9214/as3-placing-an-overlay-over-an-image/</link>
<description><![CDATA[ <p>So here's the scenario, suppose your loading an image, swf, etc but if any other kind of error occurs in your application, you want an error message to display above the image.  There are many different way to accomplish this task so I thought it would be helpful to show a more unconventional technique using Event.Added</p> ]]></description>
<pubDate>Thu, 23 Oct 2008 14:37:06 GMT</pubDate>
<guid>http://snipplr.com/view/9214/as3-placing-an-overlay-over-an-image/</guid>
</item>
</channel>
</rss>