<?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>Image in action</title>
	<atom:link href="http://www.imageinaction.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imageinaction.net/blog</link>
	<description>Roberto Scordino blog</description>
	<lastBuildDate>Sun, 12 Jun 2011 06:27:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Bitcoin black friday</title>
		<link>http://www.imageinaction.net/blog/2011/06/bitcoin-black-frida/</link>
		<comments>http://www.imageinaction.net/blog/2011/06/bitcoin-black-frida/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 06:27:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Bitcoin]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=100</guid>
		<description><![CDATA[What is happening in the market for Bitcoin in my opinion can be explained easily if one considers how the market is still small, but how big are the interests against the development of a peertopeer coin without masters and with no state control. If i was a banker, a federal reserve, a credit card ]]></description>
			<content:encoded><![CDATA[<p>What is happening in the market for Bitcoin in my opinion can be  explained easily if one considers how the market is still small, but how  big are the interests  against the development of a peertopeer coin  without masters and with no state control. If i was a banker, a federal  reserve, a credit card owner, paypal or a gold reserve owner for now I  can invest very little money to cause a depression in the bitcoin  market. Mtgox has a volume of some hundreds of thousands. I can easily  buy bitcoin at 20 and sell at 15, rebuy at 15 and sell at 10. I will  lose maybe some million dollars but this it is very very little in  comparison to what I might lose in the future if bitcoin establishing  themselves as digital money currently used. Some day ago there was  Bilderberg Group reunion, i think some of the speech were about bitcoin  and their risk for the establishement. Now someone is working on  bitcoin… Could this stop the bitcoin economy? Surely a big deflation was  a big advertising for bitcoin and now depression can stop enthusiasm of  some folks but bitcoin are still a great idea and i hope there will a  future for them because we all need their freedom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/06/bitcoin-black-frida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multilanguage flash</title>
		<link>http://www.imageinaction.net/blog/2011/06/multilanguage-flash/</link>
		<comments>http://www.imageinaction.net/blog/2011/06/multilanguage-flash/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 11:03:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[multi language flash]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=91</guid>
		<description><![CDATA[I recently created the multi-language version of a flash game that I had developed. Practically I had to change all the texts from static to dynamic so you can change their text. In addition, all messages sent by the program, had to be changed from fixed strings to variables. Most important of all, I had ]]></description>
			<content:encoded><![CDATA[<p>I recently created the multi-language version of a flash game that I had developed. Practically I had to change all the texts from static to dynamic so you can change their text. In addition, all messages sent by the program, had to be changed from fixed strings to variables. Most important of all, I had to implement a system that would make it easier to edit a text, add a new language, make sure that the user could click a button and change the language throughout the site. Logically, I decided to put all the text of the site in external files. I could have used XML file for this but I did not like their verbosity. I wanted something more like ini files that are normally used for this function. Searching the net I found an open source library that, among many other things, has a class that does just what I needed. The library is called <a title="Spring Actionscript" href="http://www.springactionscript.org/" target="_blank">Spring ActionScript</a> and is the porting from Java to actionscript of an open source project. The class in question, then, is <a title="Properities" href="http://www.pranaframework.org/docs/0.7/api/org/springextensions/actionscript/collections/Properties.html" target="_blank">Properties</a>. The documentation says in this respect: &#8220;The Properties class Represents a collection of properties in the form of key-value pairs.&#8221; Perfect! It was just what I was looking for. The class has only three methods, but just what I needed:</p>
<p>getProperty (key: String): String<br />
Gets the value of property That corresponds to the given key.</p>
<p>load (url: String): void<br />
Loads a collection of properties from an external file.<br />
setProperty (key: String, value: String): void<br />
Sets a property.</p>
<p>To be honest, I not even need the third method for this purpose.</p>
<p>At this point, I created my ini files. They are simple key and value pairs. Like this</p>
<pre><span style="color: #ffcc00;">! License free.
! Note : All ini files need to be saved as UTF-8
TITLE                    Title
</span><span style="color: #ffcc00;">MESSAGE                  Message
</span><span style="color: #ffcc00;">MSG_1                    Click "Close" or try to change the language
MSG_2                    You clicked "Close"
SELECT_LANGUAGES         Select the language
CLOSE                    CLose

</span></pre>
<p>I also created another ini to tell the program which languages ​​are present and how are named their files, here it is:</p>
<p><span style="color: #ffcc00;"> </span></p>
<pre><span style="color: #ffcc00;">it        it-IT.language.ini
gb        en-EN.language.ini
es        es-ES.language.ini</span></pre>
<p>Well, now I had to create a class that would manage everything. I created a singleton class (a design pattern that I hope all of you already know) so that was easily recalled by all classes of the program. Uhm, maybe it&#8217;s better than, if you are interested, you downloaded the <a title="Samples files" href="http://www.imageinaction.net/blog/wp-content/uploads/2011/06/multilanguageFlash1.zip" target="_blank">zip with all the sample files</a> so I can explain what I did without having to put all the code in the article.<br />
Ok, first, have a look at what is inside the zip. There is the fla and swf of the example, the two external library i used in the code, the flashDevelop project, the 4 ini file used by the swf, a folder with all the flag for any type of language you could use in your project and a classes folder with all the source code. Do you think it&#8217;s enough? <img src='http://www.imageinaction.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Let&#8217;s see what the main class Languages does.<br />
When Languages ​​is instantiated the first time, it creates a Properties, which will contain the names of the languages ​​that you have set into languages.ini and load it. Once loaded, set the current language to the first language found in languages.ini otherwise, in my case, set as default Italian. Then load the ini files for that language and, once done, does the dispatch of an event to warn that the language is loaded. You can now use the method getSentence to receive the string corresponding to a key for the current language. Another useful method of this class is changeLanguage that allows you to change the current language. Besides this main class I have also provided a class that allows you to automatically display the flags for the languages ​​present so you can easily change the language. The code, although it does not contain comments, it should be clear enough. However, if you have questions, contact me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/06/multilanguage-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I accept Bitcoins</title>
		<link>http://www.imageinaction.net/blog/2011/06/i-accept-bitcoins/</link>
		<comments>http://www.imageinaction.net/blog/2011/06/i-accept-bitcoins/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 16:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Bitcoin]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=80</guid>
		<description><![CDATA[Have you heard about Bitcoins? According to Wikipedia &#8220;Bitcoin is a digital currency created in 2009 by Satoshi Nakamoto. The name also refers both to the open source software he designed to make use of the currency and to the peer-to-peer network formed by running that software. Unlike other digital currencies, Bitcoin avoids central authorities ]]></description>
			<content:encoded><![CDATA[<p>Have you heard about Bitcoins?</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-85" style="border: 0pt none;" title="Bitcoin accepted" src="http://www.imageinaction.net/blog/wp-content/uploads/2011/06/BC_Rnd_64px.png" alt="Bitcoin accepted" width="168" height="64" /></p>
<p>According to Wikipedia &#8220;Bitcoin is a digital currency created in 2009 by Satoshi Nakamoto. The name also refers both to the open source software he designed to make use of the currency and to the peer-to-peer network formed by running that software.</p>
<p>Unlike other digital currencies, Bitcoin avoids central authorities and issuers. Bitcoin uses a distributed database spread across nodes of a peer-to-peer network to journal transactions, and uses digital signatures and proof-of-work to provide basic security functions, such as ensuring that bitcoins can be spent only once per owner and only by the person who owns them.</p>
<p>Bitcoins can be saved on a personal computer in the form of a wallet file or kept with a third party wallet service, and in either case bitcoins can be sent over the Internet to anyone with a Bitcoin address. The peer-to-peer topology and lack of central administration are features that make it infeasible for any authority (governmental or otherwise) to manipulate the quantity of bitcoins in circulation, thereby mitigating inflation.&#8221;</p>
<p>In the past days I read a lot about bitcoins and I decided to accept them as kind of payment for my work. At actual change rate I will charge you 4 bitcoins/hour, less may be for big jobs.</p>
<p>I could also accept bitcoin donation if someone want to contribute&#8230; <img src='http://www.imageinaction.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>My bitcoin address is 18kdp6EPHQjXZHWcgC3kdXw8cEQpgt3fKH<br />
so fell fre to send me some bitcoin cents!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/06/i-accept-bitcoins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steering Behavior Library From C++ To As3</title>
		<link>http://www.imageinaction.net/blog/2011/04/steering-behavior-library-from-c-to-as3/</link>
		<comments>http://www.imageinaction.net/blog/2011/04/steering-behavior-library-from-c-to-as3/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 11:11:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Senza categoria]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=50</guid>
		<description><![CDATA[Hi all, i converted a c++ library of steering behaviors to as3. See the page on the blog. It&#8217;s still in beta because I&#8217;m testing it to be sure there are no errors. The library is taken from the source code of the book &#8220;Programming game ai by example&#8221; you can find c++ sources and ]]></description>
			<content:encoded><![CDATA[<p>Hi all,<br />
i converted a c++ library of steering behaviors to as3. See the <a title="Steering behaviors AS3" href="http://www.imageinaction.net/blog/steering-behaviors/" target="_self">page</a> on the blog.<br />
It&#8217;s still in beta because I&#8217;m testing it to be sure there are no errors. The library is taken from the source code of the book &#8220;Programming game ai by example&#8221; you can find c++ sources and binaries at <a href="http://www.jblearning.com/Catalog/9781556220784/student/" target="_blank">http://www.jblearning.com/Catalog/9781556220784/student</a>/ and some excerpt and related talk at <a href="http://www.ai-junkie.com/books/index.html" target="_blank">http://www.ai-junkie.com/books/index.html</a> my first two little example in as3 are at <a href="http://www.imageinaction.net/works/steeringBehavior/flocking.html" target="_blank">http://www.imageinaction.net/works/steeringBehavior/flocking.html</a> and <a href="http://www.imageinaction.net/works/steeringBehavior/followPath.html" target="_blank">http://www.imageinaction.net/works/steeringBehavior/followPath.html</a> (refresh the page to get a new random path)<br />
The library is based on simple behaviors like seek, avoid, interpose, obstacles avoidance, cohesion, alignement etc. that can be combined togheter to get a more complex behavior. by the way as part of it there are some usefull class to perform some geometry, collision detection, vector operation. there is anybody out there that would like to help me testing, improving, optimizing the code? I would like to release it as open source as soon as I ended the tests. By now you can download it on the <a title="Steering behaviors AS3" href="http://www.imageinaction.net/blog/steering-behaviors/" target="_self">Steering Behaviors pag</a>e but remember it&#8217;s still beta&#8230;<br />
I think that such a library can be a great resource to anyone developing as3 games.<br />
Let me know..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/04/steering-behavior-library-from-c-to-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript chess PGN file viewer</title>
		<link>http://www.imageinaction.net/blog/2011/04/actionscript-chess-pgn-file-viewer/</link>
		<comments>http://www.imageinaction.net/blog/2011/04/actionscript-chess-pgn-file-viewer/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 10:14:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=40</guid>
		<description><![CDATA[I started to make a .PGN file viewer in actionscript. For the uninitiated the PGN format (not to be confused with the PNG) is a format for encoding of chess match. I am not here to explain how the format works, to know this you can view this page. I just wanted to let you ]]></description>
			<content:encoded><![CDATA[<p>I started to make a <a href="http://www.imageinaction.net/works/pgnviewer" target="_blank">.<strong>PGN file viewer</strong></a> in actionscript. For the uninitiated the PGN format (not to be confused with the PNG) is a format for encoding of chess match. I am not here to explain how the format works, to know this you can view <a href="http://www.saremba.de/chessgml/standards/pgn/pgn-complete.htm" target="_blank">this page</a>. I just wanted to let you see what I have done so far. The program loads a pgn from your computer and re-create the game on the board allowing you to scroll through the moves with a keyboard or clicking on the move who want to go. This is only a part of what I want to do, I want to reproduce all the features of the <a href="http://gameknot.com/pg/chess-tools.htm" target="_blank">tool</a> you can find at www.gameknot.com. Try it and let me know what you think. Of course you should have at least one pgn on your computer to prove it. The Internet is full of free pgn database, however if you do not even give you a link <a href="http://www.imageinaction.net/works/pgnviewer/deepBlue_Kasparov_01.pgn" target="_blank">here</a> to prove a pgn viewer. is the first match between Kasparov and Deep Blue &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/04/actionscript-chess-pgn-file-viewer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beasts of South Africa &#8211; February 2011</title>
		<link>http://www.imageinaction.net/blog/2011/02/beasts-of-south-africa-february-2011/</link>
		<comments>http://www.imageinaction.net/blog/2011/02/beasts-of-south-africa-february-2011/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 08:52:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dreams]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=36</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="oqey_image_div1" style="position:relative;width:560px;height:auto;display:none;margin: 0 auto;background:transparent;">

<div style="position:absolute;left:0px;top:136.66666666667px;z-index:99999;" class="gall_links">
                  <a id="prev1" href="#back" style="text-decoration:none;" onclick="pausePlayer();">
                    <img class="larrowjs" src="http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/images/arrow-left.png" style="width:44px;height:94px;border:none;cursor:pointer;cursor:hand"/>
                  </a>
                </div><div style="position:absolute;left:516px;top:136.66666666667px;z-index:99999;" class="gall_links">
                     <a id="next1" href="#next" style="text-decoration:none;" onclick="pausePlayer();">
                        <img class="rarrowjs" src="http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/images/arrow-right.png" style="width:44px; height:94px; border:none;cursor:pointer;cursor:hand"/>
                     </a>
                   </div><div style="margin-left:auto; margin-right:auto; width:100%; text-align:center;">Beasts of South Africa - February 2011</div>

<div id="image1" style="width:560px;height:auto;display:none;background:transparent;margin: 0 auto;" class="oqey_images"></div>



</div>

<script type="text/javascript">
      var flashvars1 = {
                          autoplay:"false",
                           flashId:"1",
		                      FKey:"",
	                   GalleryPath:"http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery",	
                         GalleryID:"1-36",
					      FirstRun:"1"
					 };
	var params1 = {bgcolor:"#FFFFFF", allowFullScreen:"true", wMode:"transparent"};
	var attributes1 = {id: "oqeygallery1"};
	swfobject.embedSWF("http://www.imageinaction.net/blog/wp-content/oqey_gallery/skins/darkfreesk/darkfreesk.swf", "flash_gal_1", "560", "420", "8.0.0", "", flashvars1, params1, attributes1);
</script> 

<div id="flash_gal_1" style="width:560px; min-width:560px; min-height:420px; height:420px; margin: 0 auto;">

<script type="text/javascript">
  jQuery(document).ready(function($){
        var pv = swfobject.getFlashPlayerVersion();
        oqey_e(pv, 1, '[div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica114.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica113.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica112.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica111.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica110.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica109.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica108.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica107.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica106.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica105.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica104.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica103.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica102.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica101.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica100.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica099.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica098.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica097.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica096.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica095.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica094.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica093.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica092.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica091.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica090.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica089.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica088.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica087.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica086.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica085.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica084.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica083.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica082.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica081.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica080.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica079.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica078.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica077.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica076.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica075.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica074.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica073.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica072.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica071.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica070.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica069.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica068.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica067.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica066.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica065.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica064.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica063.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica062.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica061.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica060.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica059.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica058.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica057.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica056.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica055.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica054.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica053.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica052.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica051.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica050.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica049.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica048.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica047.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica046.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica045.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica044.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica043.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica042.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica041.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica040.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica039.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica038.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica037.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica036.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica035.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica034.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica033.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica032.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica031.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica029.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica028.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica027.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica026.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica025.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica024.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica023.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica022.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica021.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica020.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica019.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica018.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica017.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica016.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica015.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica014.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica013.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica012.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica011.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica010.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica009.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica008.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica007.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica006.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica005.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica004.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica003.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica002.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica001.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div][div class="oqeyimgdiv" style="background: url(http://www.imageinaction.net/blog/wp-content/plugins/oqey-gallery/oqeyimgresize.php?width=497&amp;new_height=373&amp;folder=beasts-of-south-africa-february-2011&amp;img=sudafrica030.jpg&amp;img_type=oqey&amp;img_f_path=&amp;process=on) center top no-repeat;width:560px;height:373.33333333333px;margin-top:3px;"][/div]', 'off', 'on', 'off', ''); 
  });

  var htmlPlayer = document.getElementsByTagName('video');

  function pausePlayer() {
 
   for(var i = 0; i < htmlPlayer.length; i++){
       htmlPlayer[i].pause();
   }
  }
</script>

</div>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/02/beasts-of-south-africa-february-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The King is dead. Long live the King.</title>
		<link>http://www.imageinaction.net/blog/2011/01/the-king-is-dead-long-live-the-king/</link>
		<comments>http://www.imageinaction.net/blog/2011/01/the-king-is-dead-long-live-the-king/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 19:18:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dreams]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=26</guid>
		<description><![CDATA[My notebook is dead. Gone. Buried&#8230; Sigh! The motherboard is gone, the graphic card burned. I don&#8217;t know what happened. I just know that they asked me 670 euro to repair it&#8230; No way! Tomorrow I will receive a brand new notebook I ordered from internet. It costs me 699 euro but it&#8217;s more more ]]></description>
			<content:encoded><![CDATA[<p>My notebook is dead. Gone. Buried&#8230; Sigh! The motherboard is gone, the graphic card burned. I don&#8217;t know what happened. I just know that they asked me 670 euro to repair it&#8230; No way! Tomorrow I will receive a brand new notebook I ordered from internet. It costs me 699 euro but it&#8217;s more more powerfull&#8230; It&#8217;s a Core i7 from Asus. Specifically an ASUS X52JT-SX013V Core i7-740QM 4x 1.66GHz • 4096MB (2x 2048MB) • 500GB • DVD+/-RW DL • ATI Radeon 6370M 1024MB. The graphic card it&#8217;s not the maximum but I think I will use this notebook just to work so it won&#8217;t be a problem. May be that I will install Battlefield Bad Company 2&#8230; but just to try, I swear!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2011/01/the-king-is-dead-long-live-the-king/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ghost&#8217;n&#039;Goblin 2.0 &#8211; Unity3D Experiment</title>
		<link>http://www.imageinaction.net/blog/2010/12/ghostandgoblin-unity3d-experiment/</link>
		<comments>http://www.imageinaction.net/blog/2010/12/ghostandgoblin-unity3d-experiment/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 11:29:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=17</guid>
		<description><![CDATA[Well, the course is over. It was hard but is gone&#8230; Now, waiting a new work for Samsung that would start on january, I want to restart my new technology studies. After some experiment with Alternativa3D platform I think that the flash Molehill technology is still in a too opening stage to understand the road ]]></description>
			<content:encoded><![CDATA[<p>Well, the course is over. It was hard but is gone&#8230; Now, waiting a new work for Samsung that would start on january, I want to restart my new technology studies.<br />
After some experiment with <a title="Alternativa3D platform" href="http://alternativaplatform.com/en/alternativa3d/" target="_blank">Alternativa3D platform</a> I think that the <a title="flash molehill" href="http://labs.adobe.com/technologies/flash/molehill/" target="_blank">flash Molehill</a> technology is still in a  too opening stage to understand the road to take. So I decide to wait some other month before study it in deep. Among other things we need to understand what kind of physics engine to associate Alternativa3D since for now the library contains only one species of Raycasting to handle collisions, but not a real physics engine, assuming that it will ever have one. The prospects in this field come from Jiblib or the WOW physics engine based on the <a title="APE libraries" href="http://www.cove.org/ape/index.htm" target="_blank">APE libraries</a> (2D physics engine Cove). So I decide for now to continue studying the <a title="Unity3D" href="http://unity3d.com/" target="_blank">Unity3D</a> engine that at least has a good IDE to work with. With my friend Roberto Liberati for the 3d Studio part and some other friends for the music and graphics, we have started trying to do a remake of the famous old 2d game &#8220;Ghost and Goblin&#8221; in a 3d version. For now, we are just familiarizing with the Unity3D engine and make some experiment with the IDE and the language but you can have a preliminary look at our work <strong><span style="color: #ff9900;"><a title="here" href="http://www.imageinaction.net/works/g&amp;g" target="_blank">here</a></span></strong>. It&#8217;s still a first alpha version but you can understand what we are aiming to do.<br />
Stay tuned because we will update the demo as the work will proceed!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2010/12/ghostandgoblin-unity3d-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Texas Chainsaw Massacre course&#8230;</title>
		<link>http://www.imageinaction.net/blog/2010/11/the-texas-chainsaw-massacre-course/</link>
		<comments>http://www.imageinaction.net/blog/2010/11/the-texas-chainsaw-massacre-course/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 21:04:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=10</guid>
		<description><![CDATA[From tomorrow I start to hold a crash course in Actionscript 3 for beginners. Will be nine days to eight hours a day, practically the Texas Chainsaw Massacre &#8230; I hope to keep high the concentration of the students, even though I realize that the days are few and the concepts to be learned from ]]></description>
			<content:encoded><![CDATA[<p>From tomorrow I start to hold a crash course in Actionscript 3 for beginners. Will be nine days to eight hours a day, practically the Texas Chainsaw Massacre &#8230; I hope to keep high the concentration of the students, even though I realize that the days are few and the concepts to be learned from the ground are many. My goal is to give them the foundation to be able to independently write simple programs and above all being able to go it alone in the study of Actionscript knowing how to look in the manual, in some book and on the web. In my dreams I would be able to program with them a little breakout-style game but I do not know if it will be possible in such a short time. In fact, even if the 72 hours could be enough, they are too concentrated to give them time to assimilate the many concepts needed and to have some time to do exercises on their own. The ideal would be to dilute the 72 hour course over a minimum of 6 weeks. In order not to give them too much notions all together and have time to make them do some exercises on their own.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2010/11/the-texas-chainsaw-massacre-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purpose of study for the near future!</title>
		<link>http://www.imageinaction.net/blog/2010/11/purpose-of-study/</link>
		<comments>http://www.imageinaction.net/blog/2010/11/purpose-of-study/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 13:39:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.imageinaction.net/blog/?p=1</guid>
		<description><![CDATA[The workflow that starts from Photoshop and Illustrator through Catalyst  until you get to Flash Builder 4. The new version of the server socket SmartfoxServer 2 and consequently the Java language required by this version for implement server-side extensions. The graphics engine for Flash  of Alternativa for being ready when at the end of next ]]></description>
			<content:encoded><![CDATA[<p>The workflow that starts from Photoshop and Illustrator through Catalyst  until you get to Flash Builder 4.</p>
<p>The new version of the server socket <a title="SmartfoxServer 2x" href="http://www.smartfoxserver.com/2X/" target="_blank">SmartfoxServer 2</a> and consequently the Java language required by this version for implement server-side extensions.</p>
<p>The graphics engine for Flash  of <a title="Alternativa 3D" href="http://alternativaplatform.com/en/alternativa3d/" target="_blank">Alternativa</a> for being ready when at the end of next year will be released the new Flash player with built-in support for true 3D.</p>
<p>A better understanding of the Facebook API and Google.</p>
<p>Learn how to develop applications iPhone / iPad starting from Flash and / or Flex Air with the conversion tools that Adobe is <a title="Packager for iPhone" href="http://labs.adobe.com/technologies/packagerforiphone/" target="_blank">setting up</a>.</p>
<p>As you can see there&#8217;s a lot of stuff to study among other jobs, but basically this is the beauty of this job or not?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imageinaction.net/blog/2010/11/purpose-of-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

