<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Marius&#039; Blog</title>
	<link>http://mariuscristiandonea.com</link>
	<description></description>
	<lastBuildDate>Fri, 05 Mar 2010 10:02:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How to write valid HTML/XHTML code with embedded Flash</title>
		<description><![CDATA[This code is tested on all major browsers: Firefox (Win/Linux), IE, Opera, Safary, Chrome.
HTML code:


&#60;object type=&#34;application/x-shockwave-flash&#34; data=&#34;flash_file.swf&#34; width=&#34;100%&#34; height=&#34;100%&#34;&#62;
&#160; &#160; &#60;param name=&#34;movie&#34; value=&#34;flash_file.swf&#34; /&#62;
&#160; &#160; &#60;param name=&#34;quality&#34; value=&#34;high&#34; /&#62;
&#160; &#160; &#60;param name=&#34;wmode&#34; value=&#34;transparent&#34; /&#62;
&#60;/object&#62;



]]></description>
		<link>http://mariuscristiandonea.com/2010/03/05/how-to-write-valid-htmlxhtml-code-with-embedded-flash/</link>
			</item>
	<item>
		<title>Smooci 2.1.0 WordPress Theme</title>
		<description><![CDATA[Need an WordPress Theme for mobiles? Visit SMOOCI.COM

Smooci is a WordPress theme for mobile phones and devices. Use this WordPress plugin to display the theme when your WordPress site is visited on mobiles

]]></description>
		<link>http://mariuscristiandonea.com/2010/01/21/smooci-2-1-0-wordpress-theme/</link>
			</item>
	<item>
		<title>Smooci (WordPress on Mobiles) &#8211; WordPress Plugin</title>
		<description><![CDATA[Need an WordPress Theme for mobiles? Visit SMOOCI.COM
Smooci (WordPress on Mobiles) plugin can be used to display a diferent theme when your WordPress site is visited on mobile phones or devices.
The plugin detects the mobile device and displays the theme of your choice. If you encounter a mobile phone or device that doesn&#8217;t display the [...]]]></description>
		<link>http://mariuscristiandonea.com/2010/01/21/smooci-wordpress-on-mobiles-wordpress-plugin/</link>
			</item>
	<item>
		<title>AJAX form request using POST method</title>
		<description><![CDATA[Here is a way you can call a server side script with AJAX, using POST method.
JavaScript code:


// declare a global variable
var xmlHttpVariable

// http request object
function GetXmlHttpObject&#40;&#41;
&#123;
&#160; &#160; var xmlHttp = null;

&#160; &#160; try
&#160; &#160; &#160; &#160; &#123;xmlHttp = new XMLHttpRequest&#40;&#41;;&#125;
&#160; &#160; catch &#40;e&#41;
&#160; &#160; &#123;
&#160; &#160; &#160; &#160; try
&#160; &#160; &#160; &#160; &#160; &#160; &#123;xmlHttp [...]]]></description>
		<link>http://mariuscristiandonea.com/2009/08/05/ajax-form-request-using-post-method/</link>
			</item>
	<item>
		<title>DOP Player WordPress Plugin</title>
		<description><![CDATA[After several tests and favorable comments, I can officialy launch DOP Player Wordpress Plugin 1.0.
Dop Player is intended for users that want an easy to use player to integrate in their blog.
Dop Player can be easily customized from an admin panel to match your template&#8217;s colors.
Warning
You have to copy the content from dop-player folder from [...]]]></description>
		<link>http://mariuscristiandonea.com/2009/05/31/dop-player-wordpress-plugin/</link>
			</item>
	<item>
		<title>Load an image (jpeg, png, gif) or a swf using ActionScript 3.0</title>
		<description><![CDATA[Here is an example that illustrate how you can upload an image or a swf in your Flash ActionScript 3.0 project .
ActionScript 3.0 code:


// create the MovieClip that will hold the object loaded
var _mc:MovieClip = new MovieClip&#40;&#41;;
addChild&#40;_mc&#41;;

// create the URLRequest with the path to the object you want to load
var request:URLRequest = new URLRequest&#40;&#34;image.jpg&#34;&#41;;
var loader [...]]]></description>
		<link>http://mariuscristiandonea.com/2009/05/30/load-an-image-jpeg-png-gif-or-a-swf-using-actionscript-30/</link>
			</item>
	<item>
		<title>How to trigger an event with ActionScript 3.0 when the sizes of a swf&#8217;s stage are modified</title>
		<description><![CDATA[This is very useful when you try to create a &#8220;liquid&#8221; flash application.
ActionScript 3.0 code:


//The next 2 lines are not mandatory. 
//Use them if you whant to keep the original sizes.
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT; // Other values: 
//TOP, BOTTOM, LEFT, RIGHT, TOP_RIGHT
// BOTTOM_LEFT, BOTTOM_RIGHT 

stage.addEventListener&#40;Event.RESIZE, resizeHandler&#41;;

function resizeHandler&#40;event:Event&#41;:void 
&#123;
&#160; &#160; &#160; &#160; trace&#40;stage.stageWidth&#41;;
&#160; &#160; &#160; [...]]]></description>
		<link>http://mariuscristiandonea.com/2009/05/05/how-to-trigger-an-event-with-actionscript-30-when-the-sizes-of-a-swfs-stage-is-modified/</link>
			</item>
	<item>
		<title>How to parse a XML file using ActionScript 3.0</title>
		<description><![CDATA[Here is an example on how to get data from XML file using ActionScript 3.0.
XML file example:


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;Data&#62;
&#160; &#160; &#60;Title font=&#34;Arial&#34;&#62;
&#160; &#160; &#160; &#160; XML Example
&#160; &#160; &#60;/Title&#62;
&#160; &#160; &#60;HTML_Example&#62;
&#160; &#160; &#160; &#160; &#60;![CDATA[You can add html text here.]]&#62;
&#160; &#160; &#60;/HTML_Example&#62;
&#160; &#160; &#60;List&#62;
&#160; &#160; &#160; &#160; &#60;URL&#62;http://www.mariuscristiandonea.com&#60;/URL&#62;
&#160; &#160; &#160; &#160; &#60;URL&#62;http://www.mariuscristiandonea.com&#60;/URL&#62;
&#160; &#160; &#160; &#160; [...]]]></description>
		<link>http://mariuscristiandonea.com/2009/05/03/how-to-parse-a-xml-file-using-actionscript-30/</link>
			</item>
	<item>
		<title>How to change a movie clip color using ActionScript 3.0</title>
		<description><![CDATA[This is a function that changes the color of a video given as a parameter in a new color given as parameter as well.
ActionScript 3.0 code:


import flash.geom.ColorTransform; // import ColorTransform class

function setColor&#40;_mc:MovieClip, color&#41;:void
&#123;
&#160; &#160; var newColor:ColorTransform = _mc.transform.colorTransform;
&#160; &#160; newColor.color = color;
&#160; &#160; _mc.transform.colorTransform = newColor;
&#125;

setColor&#40;bigBtn.icon.bg, 0xff0000&#41;; //call the function



]]></description>
		<link>http://mariuscristiandonea.com/2009/04/29/how-to-change-a-movie-clips-color-using-actionscript-30/</link>
			</item>
</channel>
</rss>
