<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>noponies &#187; ActionScript 3</title>
	<atom:link href="http://www.blog.noponies.com/category/flash-experiments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.noponies.com</link>
	<description>I want a pony for xmas! Flash, ActionScript, Drawing, Code, Illustration from New Zealand.</description>
	<lastBuildDate>Sun, 16 Jan 2011 18:15:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Flashpress 0.8 Released</title>
		<link>http://www.blog.noponies.com/2010/12/flashpress-0-8-released/</link>
		<comments>http://www.blog.noponies.com/2010/12/flashpress-0-8-released/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 12:21:53 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[Zend AMF]]></category>

		<guid isPermaLink="false">http://www.blog.noponies.com/?p=363</guid>
		<description><![CDATA[Changes 1 / Changes to WpPostVo Object a / If the post has a featured image, the URL to it is included, otherwise its an empty string b / The posts tags are listed (if it has any) as an array of TermVo Objects c / The posts categories are listed (if it has any) [...]]]></description>
			<content:encoded><![CDATA[<p>Changes</p>
<p>1 / Changes to WpPostVo Object</p>
<ul>
<li>a / If the post has a featured image, the URL to it is included, otherwise its an empty string</li>
<li>b / The posts tags are listed (if it has any) as an array of TermVo Objects</li>
<li>c / The posts categories are listed (if it has any) as an array of TermVo Objects</li>
<li>d / The posts attachments are listed as an array of their URLS</li>
</ul>
<p>2 / Changed inheritance of WpPostVo and WpSearchVo. Inheritance chain is as follows: WpPostbase->WpPostVo->WpSearchVo. Reason for this change is that the WpSearchVo only differs from the WpPostVo in its use of the &#8216;score&#8217; attribute. Also, it makes sense that the WpSearchVo object returns as much information as a standard WpPostVo object.</p>
<p>3 / Fixed an variable type issue with searching that meant that only integer based score results were returned. This has been changed to a Number.</p>
<p>4 / Rejigging of internal helper methods</p>
<p>5 / Removal of two redundant VoObjects, which had been replaced by WpTermVo.</p>
<p>6 / Package name of the actionscript demo has changed from &#8216;noponies&#8217; to &#8216;com.reformation&#8217;. This is due to the slow move of this blog to a new location.</p>
<p>Let me know how performance is with this release. The internal post retrieval method is now doing more work, but should save you having to make extra database requests. I&#8217;ve tested it with a request for 100 posts and its quick. But let me know. Let me know if you encounter any bugs etc.</p>
<p>I&#8217;ve not had time to finish the more full featured demo, but its coming.</p>
<p>Download here: <a class="downloadlink" href="http://www.blog.noponies.com/wp-content/plugins/download-monitor/download.php?id=21" title="Version0.8 downloaded 764 times" >Flash Press 0.8 (764)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.noponies.com/2010/12/flashpress-0-8-released/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Flashpress 0.8 Features</title>
		<link>http://www.blog.noponies.com/2010/08/flashpress-0-8-features/</link>
		<comments>http://www.blog.noponies.com/2010/08/flashpress-0-8-features/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 14:12:11 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Zend AMF]]></category>

		<guid isPermaLink="false">http://www.blog.noponies.com/?p=360</guid>
		<description><![CDATA[I&#8217;m currently rebuilding my noponies illustration site with Flashpress and of course a WordPress backend. I&#8217;ve added in some new features to Flashpress as I&#8217;ve worked through the site, these are related to the data returned by each PostVO object, I&#8217;ve tried to make it a little simpler to get what you need from this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently rebuilding my noponies illustration site with Flashpress and of course a WordPress backend.</p>
<p>I&#8217;ve added in some new features to Flashpress as I&#8217;ve worked through the site, these are related to the data returned by each PostVO object, I&#8217;ve tried to make it a little simpler to get what you need from this object, without needed to go back to WordPress for simple stuff, like a posts tags.</p>
<p>So, I&#8217;ve added in the following to the post vo object:</p>
<p>1 / If the post has a featured image, the URL to it is included, otherwise its an empty string<br />
2 / The posts tags are listed (if it has any) as an array of TermVo Objects<br />
3 / The posts categories are listed (if it has any) as an array of TermVo Objects<br />
4 / The posts attachments are listed as an array of their URLS.</p>
<p>The addition of tags and categories makes filtering the returned data quite easy.</p>
<p>Are there any other features that people want? I was looking at the user authentication aspect of WordPress at work last week, and was wondering if people have the need to be able to authenticate users? Possibly useful for adding comments etc?</p>
<p>1/ I think I&#8217;ll add a user authentication method, it wont really log a user into wordpress, but it would be useful for testing user access rights etc. Thoughts?</p>
<p>Once I finish my noponies illustration site, I&#8217;ll release the source files, so that there are some richer examples of what can be done with Flash and WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.noponies.com/2010/08/flashpress-0-8-features/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Simple Flash to browser console logging</title>
		<link>http://www.blog.noponies.com/2010/07/simple-flash-to-browser-console-logging/</link>
		<comments>http://www.blog.noponies.com/2010/07/simple-flash-to-browser-console-logging/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 10:37:48 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.blog.noponies.com/?p=358</guid>
		<description><![CDATA[If you are like me, you like to be able to trace out commands etc from Flash into your browser container. I generally use FlashTracer on Firefox or a more full featured debugger. However, sometimes I simply want to trace elements into the console of either Safari or Firefox. This is as simple as using [...]]]></description>
			<content:encoded><![CDATA[<p>If you are like me, you like to be able to trace out commands etc from Flash into your browser container. I generally use FlashTracer on Firefox or a more full featured debugger.</p>
<p>However, sometimes I simply want to trace elements into the console of either Safari or Firefox. This is as simple as using ExternalInterface and a small javascript method that takes a single parameter and writes it to the browsers console, via console.log(). Which can then be inspected via Safari&#8217;s debug panel or within Firebug on Firefox. And yes, I realise I could use Flashbug or something similar, but to be honest, I hardly ever use Firefox, hence the desire for something that works in Safari.</p>
<p>Simple example file is attached.</p>
<p><strong>Source files</strong><br />
<a class="downloadlink" href="http://www.blog.noponies.com/wp-content/plugins/download-monitor/download.php?id=20" title="Version1 downloaded 1258 times" >Simple Flash logging (1258)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.noponies.com/2010/07/simple-flash-to-browser-console-logging/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>FlashPress 0.6 Released</title>
		<link>http://www.blog.noponies.com/2010/06/flashpress-0-6-released/</link>
		<comments>http://www.blog.noponies.com/2010/06/flashpress-0-6-released/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 19:25:25 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[Zend AMF]]></category>

		<guid isPermaLink="false">http://www.blog.noponies.com/?p=348</guid>
		<description><![CDATA[OK, I finally had some time to tidy this up a little. So, here it is, FlashPress 0.6. Supports both ZendAMF and AMFPHP. Supports WordPress 3.0. This version of FlashPress uses the WordPress API rather than directly working on the wordpress database. It also includes write support for some methods. This is experimental and you [...]]]></description>
			<content:encoded><![CDATA[<p>OK, I finally had some time to tidy this up a little.</p>
<p>So, here it is, FlashPress 0.6.</p>
<p>Supports both ZendAMF and AMFPHP. Supports WordPress 3.0.</p>
<p>This version of FlashPress uses the WordPress API rather than directly working on the wordpress database. It also includes write support for some methods. This is experimental and you should test this fully before deploying it. There is also an experimental search method, that will probably change internally as I get my head around the SQL required.</p>
<p>This is a beta, so let me know how you get on with it, and post any bugs etc so I can look into them.</p>
<p>The example file is minimal, with just a listing of the various method calls and their parameters. As I get time (unlikely) I’ll add to the examples. I’ll add the method lists to this post as I get some more time.</p>
<p><strong>Note:</strong> I&#8217;ve tested this release against WordPress 3.0, and it seems to be working fine. Let me know if you enounter any issues.</p>
<p><strong>Source Files</strong><br />
<a class="downloadlink" href="http://www.blog.noponies.com/wp-content/plugins/download-monitor/download.php?id=16" title="Version0.6 downloaded 853 times" >Flash Press 0.6 (853)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.noponies.com/2010/06/flashpress-0-6-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 watermark image class</title>
		<link>http://www.blog.noponies.com/2010/03/actionscript-3-watermark-image-class/</link>
		<comments>http://www.blog.noponies.com/2010/03/actionscript-3-watermark-image-class/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 19:30:58 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[watermark]]></category>

		<guid isPermaLink="false">http://www.blog.noponies.com/?p=350</guid>
		<description><![CDATA[A recent project needed a watermark added to any images that could be downloaded off the site. Originally we used a PHP solution, which worked fine. But I wanted to do it inside of Flash and use the save methods in FP10. So, I wrote this simple little class to adding a water mark to [...]]]></description>
			<content:encoded><![CDATA[<p>A recent project needed a watermark added to any images that could be downloaded off the site. Originally we used a PHP solution, which worked fine. But I wanted to do it inside of Flash and use the save methods in FP10.</p>
<p>So, I wrote this simple little class to adding a water mark to a display object, and the returning that display object as bitmapdata for say, passing to Adobe’s jpg encoder.</p>
<p>Maybe someone will have some use for it?</p>
<p><strong>Source Files</strong><br />
Here is the relevant source file; <a class="downloadlink" href="http://www.blog.noponies.com/wp-content/plugins/download-monitor/download.php?id=18" title="Version1 downloaded 1144 times" >Watermark class (1144)</a></p>
<p>By downloading, you agree to the terms of use, outlined here: <a href="http://www.blog.noponies.com/terms-and-conditions">http://www.blog.noponies.com/terms-and-conditions</a></p>
<p><strong>Dependencies</strong><br />
Zero</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.noponies.com/2010/03/actionscript-3-watermark-image-class/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

