<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Richard Willis: Freelance Flash &amp; Flex Developer - Latest Comments</title><link>http://richtextformat.disqus.com/</link><description>Richard Willis' professional portfolio</description><atom:link href="https://richtextformat.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 19 Nov 2008 05:09:52 -0000</lastBuildDate><item><title>Re: HowTo: Create hexidecimal grayscale integers</title><link>http://richtextformat.co.uk/blog/?p=65#comment-3892323</link><description>&lt;p&gt;although, of course, the code I just posted means you should use a value between 0 and 1&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Owen</dc:creator><pubDate>Wed, 19 Nov 2008 05:09:52 -0000</pubDate></item><item><title>Re: HowTo: Create hexidecimal grayscale integers</title><link>http://richtextformat.co.uk/blog/?p=65#comment-3892310</link><description>&lt;p&gt;you can also use hex numbers as the multiplier :)&lt;br&gt;ie num * 0xFFFFFF&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Owen</dc:creator><pubDate>Wed, 19 Nov 2008 05:08:26 -0000</pubDate></item><item><title>Re: HowTo: Create a dynamic multi-language Flex application</title><link>http://richtextformat.co.uk/blog/?p=168#comment-3874704</link><description>&lt;p&gt;Hey Alvaro&lt;/p&gt;&lt;p&gt;The apps i've made using this method are kind of massive and belong (IP-wise) to other organisations anyway, so i'm not really able to email them around to just anyone I'm afraid. If there's any part of this tutorial that's not too clear just let me know and I'll try to find some time to rewrite that bit to make it clearer.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">The Mother of Joseph Beuys</dc:creator><pubDate>Tue, 18 Nov 2008 04:01:50 -0000</pubDate></item><item><title>Re: HowTo: Create a dynamic multi-language Flex application</title><link>http://richtextformat.co.uk/blog/?p=168#comment-3871485</link><description>&lt;p&gt;hi&lt;br&gt;I would like to know if you can to send me this app.&lt;br&gt;I dont get to do to function this..&lt;br&gt;I need urgent to make some like with this..&lt;/p&gt;&lt;p&gt;Thanks &lt;br&gt;wait&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alvaro Raminelli</dc:creator><pubDate>Mon, 17 Nov 2008 22:15:06 -0000</pubDate></item><item><title>Re: FlashBrighton all over the DIMAs like a rash</title><link>http://richtextformat.co.uk/blog/?p=346#comment-3780785</link><description>&lt;p&gt;Your copy is truly fearsome Rich. FEARSOME. Shame there wasn't a copy-writing category for you this year. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">zenbullets</dc:creator><pubDate>Fri, 14 Nov 2008 16:27:40 -0000</pubDate></item><item><title>Re: FlashBrighton all over the DIMAs like a rash</title><link>http://richtextformat.co.uk/blog/?p=346#comment-3769492</link><description>&lt;p&gt;your copy surely is awesome :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">neil</dc:creator><pubDate>Fri, 14 Nov 2008 08:09:08 -0000</pubDate></item><item><title>Re: Where have my swc graphic assets gone?</title><link>http://richtextformat.co.uk/blog/?p=241#comment-3719657</link><description>&lt;p&gt;Hi Richard, I wrote the article for Ultraviolet Design. Appreciate the link back. Coincidentally I also wrote a post about this problem however I attributed it to using multiple swcs in one AS project in Flex Builder. I have more recently realised (and had this confirmed by your post) that it is just a bug in Flash, which we are at the mercy of. Very frustrating but what can you do.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gareth</dc:creator><pubDate>Wed, 12 Nov 2008 15:10:50 -0000</pubDate></item><item><title>Re: HowTo: Create a dynamic multi-language Flex application</title><link>http://richtextformat.co.uk/blog/?p=168#comment-3127432</link><description>&lt;p&gt;Ive just had to adapt this system a little for a Flex app that didn't use curly braces binding but instead uses AS binding via BindingUtils. Happily tho just a few minor changes to the xml parsing method which I'll come back here and document later when I get the chance. And if anything it seems slightly better as it should be a technique entirely free of 'Warning' traces. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">The Mother of Joseph Beuys</dc:creator><pubDate>Fri, 17 Oct 2008 08:41:49 -0000</pubDate></item><item><title>Re: HowTo: Force Flex to apply width &amp;#038; height with CSS</title><link>http://richtextformat.co.uk/blog/?p=258#comment-3038830</link><description>&lt;p&gt;having just got up this morning it has occurred to me that if there are any other things missing from or incorrectly implemented in Flex' CSS support - as there undoubtedly are - we could rename 'DimensionsManager' to something like 'CSSImplementor' and give it a whole bunch of other static methods too, to adjust aspects beyond just width and height, including one method called 'setAllCSSStyles' which could simple call all the class' other static methods in turn.&lt;/p&gt;&lt;p&gt;i don't really have the time or the need to do this right now but if i get some time later i might.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">The Mother of Joseph Beuys</dc:creator><pubDate>Tue, 14 Oct 2008 05:27:09 -0000</pubDate></item><item><title>Re: AS3 Optimisation Tip I: Use public properties</title><link>http://richtextformat.co.uk/blog/?p=46#comment-2988827</link><description>&lt;p&gt;in some languages i've used, this would be considered bad if the code exists in a linked library, because it allows for no refactoring flexibility... code that were dependent on the library would require recompiling should a public field be changed to a setter/getter in the library. hence there is a preference for public setters/getters wrapping private variables to allow insertion of logic/validation should the need arise without the penalty of recompiling all dependent projects. as runtime importing of code in AS3 is rare, this would rarely be an issue here.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">spender</dc:creator><pubDate>Fri, 10 Oct 2008 19:34:20 -0000</pubDate></item><item><title>Re: AS3 Optimisation Tip II: Avoid String concatenation</title><link>http://richtextformat.co.uk/blog/?p=63#comment-2988732</link><description>&lt;p&gt;this comes up frequently especially with strings used to hold a log of some sort...&lt;/p&gt;&lt;p&gt;function addMessage(msg:String)&lt;br&gt;{&lt;br&gt;log+=msg+"\n"; //really very bad... with enough log output, this will sink the ship&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">spender</dc:creator><pubDate>Fri, 10 Oct 2008 19:27:17 -0000</pubDate></item><item><title>Re: Cellular Automata I</title><link>http://richtextformat.co.uk/blog/?p=72#comment-1467478</link><description>&lt;p&gt;I first encountered Cellular Automata at university, and never really got the point. Until I read Rudy Rucker's "Lifebox, Seashell and The Soul" many years later, which derives a lot from Wolfram, and I got mightily obsessed with the idea of Universal Automatism, the theory of a fully deterministic universe that can be modelled mathematically (blogged about at length here: &lt;a href="http://zenbullets.com/blog/?cat=15" rel="nofollow noopener" target="_blank" title="http://zenbullets.com/blog/?cat=15"&gt;http://zenbullets.com/blog/?cat=15&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;I also did my own bit of CA based art: &lt;a href="http://www.zenbullets.com/generative/CLife.php" rel="nofollow noopener" target="_blank" title="http://www.zenbullets.com/generative/CLife.php"&gt;http://www.zenbullets.com/generative/CLife.php&lt;/a&gt; , which is a bit more of a scribble compared to the complexity of your piece.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">zenbullets</dc:creator><pubDate>Mon, 11 Aug 2008 04:45:15 -0000</pubDate></item><item><title>Re: Construct, init, reset</title><link>http://richtextformat.co.uk/blog/?p=17#comment-1467473</link><description>&lt;p&gt;no worries ragaskar, hoped it helped. and thanks for the url, very useful. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rich</dc:creator><pubDate>Mon, 17 Mar 2008 18:00:21 -0000</pubDate></item><item><title>Re: Countergaming</title><link>http://richtextformat.co.uk/blog/?p=9#comment-1467469</link><description>&lt;p&gt;hey maria&lt;/p&gt;&lt;p&gt;i think you might have mixed me up with someone else. good luck finding this other mysterious 'richard willis' character. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rich</dc:creator><pubDate>Mon, 17 Mar 2008 17:58:08 -0000</pubDate></item><item><title>Re: Countergaming</title><link>http://richtextformat.co.uk/blog/?p=9#comment-1467470</link><description>&lt;p&gt;Hi!&lt;/p&gt;&lt;p&gt;Are you Richard Willis, the one i did the pgce at worcester with?&lt;/p&gt;&lt;p&gt;if so, keep in touch!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Maria Fernandez</dc:creator><pubDate>Sat, 15 Mar 2008 15:56:12 -0000</pubDate></item><item><title>Re: Construct, init, reset</title><link>http://richtextformat.co.uk/blog/?p=17#comment-1467474</link><description>&lt;p&gt;thanks for this writeup...&lt;/p&gt;&lt;p&gt;there is a loose benchmark regarding init vs. constructor code at &lt;a href="http://blog.pixelbreaker.com/flash/as30-jit-vs-interpreted/" rel="nofollow noopener" target="_blank" title="http://blog.pixelbreaker.com/flash/as30-jit-vs-interpreted/"&gt;http://blog.pixelbreaker.co...&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Savings: 100ms!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ragaskar</dc:creator><pubDate>Thu, 13 Mar 2008 17:17:02 -0000</pubDate></item><item><title>Re: FlashBrighton&amp;#8217;s &amp;#8220;Head of Content&amp;#8221;</title><link>http://richtextformat.co.uk/blog/?p=16#comment-1467472</link><description>&lt;p&gt;Nice 1 dickie, looks like your going leaps and boundies with the plugin media guys.&lt;/p&gt;&lt;p&gt;I'm working at swindon college soon to start as an ILT intructor looking after there VLE and funnily enough there content managment and DRM for the site, as well as teaching the hairdressers how to use computers&lt;/p&gt;&lt;p&gt;'.. thats right, place your index finger on the mouse button and press firmly, brilliant! your doing great, now if you can just pop your top off...'&lt;/p&gt;&lt;p&gt;Yeah I quite like my job&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bee</dc:creator><pubDate>Tue, 05 Feb 2008 06:19:02 -0000</pubDate></item><item><title>Re: Classes within swfs within swfs gotcha</title><link>http://richtextformat.co.uk/blog/?p=15#comment-1467471</link><description>&lt;p&gt;So just going on from there: what I've just discovered is that I don't even need to bother recompiling the encased swf at all. In my case here the encasing swf loads the encased swf and casts its main timeline MC to the visual class said MC is linked to in the library and, I'm therefore assuming, brings that and any other classes therein (in this case the main timeline MC contains a whole bunch of MCs that link to the aforementioned ViewClassA) into itself anyway. I'm assuming this because having compiled the encased swf I have closed its FLA file, made changes to the ViewClassA trace code, recompiled the encasing swf, cleared the cache and viewed in a browser to see those changes to ViewClassA appear in the output trace. Which is nice, i don't have to bother recompiling both swfs every time I want an update.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rich</dc:creator><pubDate>Sun, 16 Dec 2007 08:11:29 -0000</pubDate></item></channel></rss>