<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>ciacob.tk</title>
	<link>http://www.ciacob.org</link>
	<description>Musings about ActionScript, Flex, AJAX, HTML, CSS, PHP... and pretty much any web beast out there</description>
	<lastBuildDate>Fri, 09 Apr 2010 08:01:16 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>So I&#8217;m a prostitute.. Essentially</title>
		<description><![CDATA[The quoted text is no novelty, in fact it&#8217;s a classic, as it&#8217;s been flowing around the net for some good years now. I just happened to stumble upon it these days  – well, in fact I got a link to some fresh, funny, new thingy to read ;) – and I felt it&#8217;s [...]]]></description>
		<link>http://www.ciacob.org/?p=202</link>
			</item>
	<item>
		<title>&#8230;remotely compile FLA files for Flex Builder debugging</title>
		<description><![CDATA[This is a follow-up to this two-years old post by Daryl Joseph Ducharme.
While Daryl explains how to use Ant and a *.jsfl file to remotely open Flash IDE, have it compile a given *.fla, and then close, his approach creates a release *.swf file, one that contains no debug information. If you want to actually [...]]]></description>
		<link>http://www.ciacob.org/?p=171</link>
			</item>
	<item>
		<title>&#8230;tell apart missing XML attributes from empty ones</title>
		<description><![CDATA[This might be tricky using E4X, which, in an attempt to make the overall XML handling a lot easier, apparently also took some useful &#8220;garbage&#8221; away: there is no getAttributeNode() method (or similar) in E4X, as it is in DOM.



var dataProvider1 : XML = &#60;Text /&#62;;


var dataProvider2 : XML = &#60;Text prompt=&#34;&#34; /&#62;;


&#160;


// Suppose you [...]]]></description>
		<link>http://www.ciacob.org/?p=155</link>
			</item>
	<item>
		<title>Smarter i18n platform</title>
		<description><![CDATA[I am, these days, sporadically, working at translating the UI of the MuseScore music notation software into Romanian.
The software itself is opensource, written in C++ against the QT platform, and translation, up to a few days ago, was made via the QTLinguist application.
The QTLinguist has a rather priceless feature, called suggestions (or the like), which [...]]]></description>
		<link>http://www.ciacob.org/?p=140</link>
			</item>
	<item>
		<title>&#8230;convert a decimal Number to a hexadecimal String?</title>
		<description><![CDATA[Don&#8217;t go about writing your own decimal to hexadecimal converter. In AS3, the Number.toString(radix : Number) method is all that you need:



var myDeci : Number = 16711680;


var myHexa : String = myDeci.toString &#40;16&#41;; // myHexa now holds &#34;ff0000&#34;



Note that you may still need to left pad the resulting value, if you&#8217;re operating with color triplets [...]]]></description>
		<link>http://www.ciacob.org/?p=134</link>
			</item>
	<item>
		<title>&#8230;scroll an element into view in Flex?</title>
		<description><![CDATA[This worked for me:



var myButtonBounds : Rectangle = myButton.getBounds &#40;this&#41;;


verticalScrollPosition = myButtonBounds.bottom;



In the above, myButton was the Flex component I needed to bring into view by scrolling up the content of its container.

]]></description>
		<link>http://www.ciacob.org/?p=129</link>
			</item>
</channel>
</rss>
