<?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>SizzlaBlog &#187; Uncategorized</title>
	<atom:link href="http://www.blog.sizzla-media.co.uk/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.sizzla-media.co.uk</link>
	<description>Flash, Web and Javascript development</description>
	<lastBuildDate>Sun, 15 Aug 2010 11:41:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<image>
  <link>http://www.blog.sizzla-media.co.uk</link>
  <url>http://blog.sizzla-media.co.uk/favicon.ico</url>
  <title>SizzlaBlog</title>
</image>
		<item>
		<title>Testing a custom URL shortener</title>
		<link>http://www.blog.sizzla-media.co.uk/2010/05/02/testing-a-custom-url-shortener/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2010/05/02/testing-a-custom-url-shortener/#comments</comments>
		<pubDate>Sat, 01 May 2010 23:48:32 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=534</guid>
		<description><![CDATA[Testing a custom url shortener]]></description>
			<content:encoded><![CDATA[<p>Testing a custom url shortener</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2010/05/02/testing-a-custom-url-shortener/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery ajax loading widget</title>
		<link>http://www.blog.sizzla-media.co.uk/2009/10/14/jquery-ajax-loading-widget/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2009/10/14/jquery-ajax-loading-widget/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 15:34:37 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=353</guid>
		<description><![CDATA[Even though i&#8217;ve been using jQuery to make web apps for quite a while, this simple function passed me by until quite recently. When loading data asynchronously, the end user doesn&#8217;t get any feedback that anything is actually happening (unless (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2009/10/14/jquery-ajax-loading-widget/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 278px"><img title="Jquery" src="http://www.static.leonbarrett.com/images/jquery.png" alt="Jquery" width="268" height="268" /><p class="wp-caption-text">Jquery</p></div>
<p>Even though i&#8217;ve been using jQuery to make web apps for quite a while, this simple function passed me by until quite recently.</p>
<p>When loading data asynchronously, the end user doesn&#8217;t get any feedback that anything is actually happening (unless you display a loading gif or something similar). This can often lead to the user clicking repeatedly and risking things fucking up. I usually would include an animated loading gif next to the call to action, initially hidden by CSS, and then using jQuery would display it when the call to action was clicked. After the response was received I would set the gif back to hidden. This worked perfectly fine, but would result in numerous gifs over the page (while still small, still take time to load).</p>
<p>jQuery actually has a built in function for detecting when an Ajax call is started and when it ends. With this in mind it&#8217;s really easy to invoke some action when this happens. In around six lines of jQuery, a few lines of HTML and CSS we can make a pretty nifty slide down loading message (a bit similar to Google).</p>
<p>I suppose it would help if you knew what the hell I was on about, so here is a little video of the script in action (the web app is <a title="Really clever file sharing" href="http://www.thisisreviewspace.com" target="_blank">ReviewSpace</a> &#8211; a really clever file sharing and collaboration tool that i&#8217;m working on) <strong><span style="color: #993300;"> (it&#8217;s a bit quick but you should be able to make out the yellow loading box slide down from the top of the screen)</span></strong></p>
<p><object width="400" height="250"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7065769&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7065769&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="250"></embed></object>
<p><a href="http://vimeo.com/7065769">ReviewSpace ajax loader demo</a> from <a href="http://vimeo.com/gasstreetworks">Gas Street Works</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><span style="color: #993300;"><br />
</span></strong></p>
<p>So now you know what is happening, you probably want to know how to do it.</p>
<p>The <span style="font-family: monospace, 'Times New Roman', 'Bitstream Charter', Times, serif;">ajaxStart()</span> function is called when jQuery detects an ajax call. By binding this to the whole document, it gets triggered after any ajax call in the page. When this is called we slideDown a div containing our loading text.</p>
<p>When the ajaxEnd() function is triggered, we slideUp the same div, in effect showing and then hiding our loading text. Simples!</p>
<p><strong>jQuery</strong></p>
<p><code><strong><span style="font-weight: normal;">$(document).ajaxStart(function() {</span></strong></code></p>
<p><code><strong><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span><span style="font-weight: normal;">$('#loading_display_holder').slideDown("fast");</span></strong></code></p>
<p><code><strong><span style="font-weight: normal;">});</span></strong></code></p>
<p><code><strong><span style="font-weight: normal;"><br />
</span></strong></code></p>
<p><code> </code></p>
<p><code><strong><span style="font-weight: normal;">$(document).ajaxStop(function() {</span></strong></code></p>
<p><code><strong><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span><span style="font-weight: normal;">$('#loading_display_holder').slideUp("fast");</span></strong></code></p>
<p><code><strong><span style="font-weight: normal;">});</span></strong></code></p>
<p><code><strong> </strong></code></p>
<p><code></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$(document).ajaxStart(function() {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$('#loading_display_holder').slideDown("fast");</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>});</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$(document).ajaxStop(function() {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$('#loading_display_holder').slideUp("fast");</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 146px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>});</div>
<p></code></p>
<p><strong>HTML</strong></p>
<p><code><span style="font-weight: normal;">&lt;div id="loading_display_holder"&gt;</span></code></p>
<p><code><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span><span style="font-weight: normal;">&lt;div id="loading_display"&gt;</span></code></p>
<p><code><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span><span style="font-weight: normal;">loading...</span></code></p>
<p><code> </code></p>
<p><code><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span><span style="font-weight: normal;">&lt;/div&gt;</span></code></p>
<p><code><span style="font-weight: normal;">&lt;/div&gt;</span></code></p>
<p><code><span style="font-weight: normal;"><strong>CSS</strong></span></code></p>
<p><code><span style="font-weight: normal;"><strong><span style="font-weight: normal;">#loading_display_holder{</span></strong></span></code></p>
<p><code><strong><span style="font-weight: normal;">position: fixed;</span></strong></code></p>
<p><code><strong><span style="font-weight: normal;">display: none;</span></strong></p>
<p><strong><span style="font-weight: normal;">z-index: 400;</span></strong></p>
<p><strong><span style="font-weight: normal;">width: 100%;</span></strong></p>
<p><strong><span style="font-weight: normal;">top: 0px;</span></strong></p>
<p><strong><span style="font-weight: normal;">right: 0px;</span></strong></p>
<p><strong><span style="font-weight: normal;">}</span></p>
<p><span style="font-weight: normal;"><br />
</span></p>
<p><span style="font-weight: normal;">#loading_display{</span></p>
<p><span style="font-weight: normal;">position: relative;</span></p>
<p><span style="font-weight: normal;">margin: 0 auto 0 auto;</span></p>
<p><span style="font-weight: normal;">padding: 20px;</span></p>
<p><span style="font-weight: normal;">font-size: 16px;</span></p>
<p><span style="font-weight: normal;">width: 200px;</span></p>
<p><span style="font-weight: normal;">color: #000000;</span></p>
<p><span style="font-weight: normal;">text-align: center;</span></p>
<p><span style="font-weight: normal;">background-color: #FFFACD;</span></p>
<p><span style="font-weight: normal;">border: 1px solid #FFEC8B;</span></p>
<p><span style="font-weight: normal;">-moz-border-radius-bottomright: 5px;</span></p>
<p><span style="font-weight: normal;">-moz-border-radius-bottomleft: 5px;</span></p>
<p><span style="font-weight: normal;">-webkit-border-bottom-left-radius: 5px;</span></p>
<p><span style="font-weight: normal;">-webkit-border-bottom-right-radius: 5px;</span></p>
<p><span style="font-weight: normal;">}</span></p>
<p></strong></p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2009/10/14/jquery-ajax-loading-widget/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Really simple jQuery alerts</title>
		<link>http://www.blog.sizzla-media.co.uk/2009/06/06/really-simple-jquery-alerts/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2009/06/06/really-simple-jquery-alerts/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 10:11:29 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=306</guid>
		<description><![CDATA[Over the last few month&#8217;s I have been using jQuery more and more in my web projects to do everything from style forms to adding interactivty to lists via drag and drop. In this post I will share with you (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2009/06/06/really-simple-jquery-alerts/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-312" title="picture-3" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2009/06/picture-3.png" alt="picture-3" width="659" height="60" /></p>
<p>Over the last few month&#8217;s I have been using jQuery more and more in my web projects to do everything from style forms to adding interactivty to lists via drag and drop. In this post I will share with you my simple jQuery alert plugin &#8211; altertr.</p>
<h2>About</h2>
<p>Alertr is a simple jQuery alert plugin.</p>
<p>Use it to give feedback to your users when they have updated a page for example.</p>
<h2>Features</h2>
<p>There are three types of alert:</p>
<ul>
<li>Success</li>
<li>Error</li>
<li>Information</li>
</ul>
<p>The alert can fade away after a specified amount of time</p>
<p>The alert can be clicked to fade away</p>
<p><strong>Find out more, view a demo and download from </strong><a href="http://www.leonbarrett.com/code/alertr/latest"><strong>here</strong></a><strong>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2009/06/06/really-simple-jquery-alerts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Update to Mashup</title>
		<link>http://www.blog.sizzla-media.co.uk/2009/03/02/update-to-mashup/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2009/03/02/update-to-mashup/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 06:28:32 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[last.fm]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://www.leonbarrett.com/2009/03/update-to-mashup/</guid>
		<description><![CDATA[So it seems my server got overloaded due to the excessive api calls my lastest mashup was making to the last.fm server. This did work fine when I had it running locally, I may post a video of it in (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2009/03/02/update-to-mashup/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>So it seems my server got overloaded due to the excessive api calls my lastest mashup was making to the last.fm server.</p>
<p>This did work fine when I had it running locally, I may post a video of it in action instead of the demo. In the meantime I am thinking of another tool. The other day I worked out how much my iTunes collection was worth based on 79p/track. The figure was over £18k!! Maybe a little tool to work out your last.fm value based on your plays would be fun, if I was feeling cheeky this could be linked to how popular each artist was. It may even be nice to plot these against your friends in a share index style way. Pretty much anything is possible with the api so when I have a few spare minutes I will give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2009/03/02/update-to-mashup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I came to love my Apple TV</title>
		<link>http://www.blog.sizzla-media.co.uk/2009/01/04/how-i-came-to-love-my-apple-tv/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2009/01/04/how-i-came-to-love-my-apple-tv/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 14:04:49 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=225</guid>
		<description><![CDATA[(with a little help from my iPhone) So I finally gave in and brought an Apple TV last month and managed to get a little discount thanks to the Thanksgiving Sale. It was a long and arduous decision; I read (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2009/01/04/how-i-came-to-love-my-apple-tv/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>(with a little help from my iPhone)</p>
<p>So I finally gave in and brought an Apple TV last month and managed to get a little discount thanks to the Thanksgiving Sale. It was a long and arduous decision; I read many blogs and really did my research as i&#8217;d heard mixed reviews about the device. I must admit that the ability to install Boxee onto it did swing my decision slightly. </p>
<p>The ATV out of the box is a bit pants (a bit like the iPhone) but with a few simple hacks the thing can be really good &#8211; again like the iPhone. For this reason I decided to apply the aTV hack. I even forked up the 30 quid for it. The process was simple and easy and I now have a device that will play almost any media file. I can also use my favourite FTP client Transmit to get files onto the hard drive. This is great as I don&#8217;t have to rely on iTunes to get video&#8217;s and movies onto it.</p>
<p>The best bit is that I have hooked it up so that I don&#8217;t even need my TV on to enjoy music. To do this I ditched the HDMI option and went for component leads. As I don&#8217;t have any HD video content  the difference isn&#8217;t noticeable, plus I still get 1080i resolution over component.</p>
<p>The advantage of using component is that I have the video going to my TV, but the audio is sent to a set of old PC speakers. This means that I use the Remote App on my iPhone to control the ATV when the TV is turned off. Apart from being a brilliant gadget I can control the music from anywhere, and save power (and the TV screen) by not having the TV on just to get the music to come through the TV speakers.</p>
<p>For me this is great as I can even play on the Wii and have music all at the same time.</p>
<p>The next step is to get a full 5.1 surround sound system and use the digital connection for the sound output, but for now a cheap pair of 2.1 PC speakers is more than good enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2009/01/04/how-i-came-to-love-my-apple-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom ringtones for your iPhone</title>
		<link>http://www.blog.sizzla-media.co.uk/2008/12/16/custom-ringtones-for-your-iphone/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2008/12/16/custom-ringtones-for-your-iphone/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 12:28:36 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[audiko]]></category>
		<category><![CDATA[ringtone]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=197</guid>
		<description><![CDATA[Just a quick post to show you a web service that allows you to create and download ringtones for your iPhone. Simply head to http://audiko.net and follow the instructions. Here is one I made earlier: http://audiko.net/ringtone/Roots+Manuva/886290/Buff+Nuff+%28Prod.+By+Toddla+T%29/en.html?fresh]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/12/audiko.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-198" title="audiko" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/12/audiko.jpg" alt="" width="154" height="50" /></a></p>
<p>Just a quick post to show you a web service that allows you to create and download ringtones for your iPhone. Simply head to http://audiko.net and follow the instructions.</p>
<p>Here is one I made earlier:</p>
<p>http://audiko.net/ringtone/Roots+Manuva/886290/Buff+Nuff+%28Prod.+By+Toddla+T%29/en.html?fresh</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2008/12/16/custom-ringtones-for-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash, XML and foreign characters</title>
		<link>http://www.blog.sizzla-media.co.uk/2008/11/20/flash-xml-and-foreign-characters/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2008/11/20/flash-xml-and-foreign-characters/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:52:49 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General Info]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[foreigh characters]]></category>
		<category><![CDATA[glyphs]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=182</guid>
		<description><![CDATA[The Scenario You are creating a Flash project that feeds text in from an external XML file. The text is currently in English but there is a requirement that the text be changed to other languages. The Problem You have (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2008/11/20/flash-xml-and-foreign-characters/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<h3><span style="font-weight: normal;">The Scenario</span></h3>
<p>You are creating a Flash project that feeds text in from an external XML file. The text is currently in English but there is a requirement that the text be changed to other languages.</p>
<h3><span style="font-weight: normal;">The Problem</span></h3>
<p>You have added foreign characters such as é, ü or ß and they don&#8217;t show up in Flash.</p>
<h3><span style="font-weight: normal;">The Solution</span></h3>
<p>Follow these steps below and all should be well:</p>
<p>Ensure that your XML document is formatted as UTF-8. If you are using Coda, it&#8217;s simple enough.</p>
<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/11/encoding.png" rel="lightbox"><img class="alignnone size-full wp-image-188" title="encoding" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/11/encoding.png" alt="" width="390" height="441" /></a></p>
<p>and that is also has the correct XML declaration in the header: </p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243; ?&gt;</p></blockquote>
<p>Ensure that you have a dynamic text box in Flash and that you have given it an instance name.</p>
<p>Ensure that the font you are using supports foreign characters.</p>
<p>Make sure that you embed the font and select the relevant glyphs. Use shift to select more than one set. It is also a good idea to manually add the specific characters that you need to embed. For example to add é on a Mac, hold down the Alt key and then the letter e. The accent will turn yellow and then press the e letter again. </p>
<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/11/picture-3.png" rel="lightbox"><img class="alignnone size-medium wp-image-189" title="picture-3" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads/2008/11/picture-3-244x300.png" alt="" width="244" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2008/11/20/flash-xml-and-foreign-characters/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GoogleMaps/Locator Panel Error</title>
		<link>http://www.blog.sizzla-media.co.uk/2008/08/07/googlemapslocator-panel-error/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2008/08/07/googlemapslocator-panel-error/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 11:32:26 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=126</guid>
		<description><![CDATA[I have just spotted an error with the location abilities of the two apps I have made that use the GMap component that causes the Flash to crash. As soon as I can I will investigate these errors. Sorry for (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2008/08/07/googlemapslocator-panel-error/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I have just spotted an error with the location abilities of the two apps I have made that use the GMap component that causes the Flash to crash.</p>
<p>As soon as I can I will investigate these errors.</p>
<p>Sorry for any inconvenience caused.</p>
<p>Leon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2008/08/07/googlemapslocator-panel-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m in Web Designer Mag</title>
		<link>http://www.blog.sizzla-media.co.uk/2008/07/03/im-in-web-designer-mag/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2008/07/03/im-in-web-designer-mag/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 17:40:26 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flcodr]]></category>
		<category><![CDATA[web designer mag]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=256</guid>
		<description><![CDATA[The latest issue of Web Designer Mag recently landed on my door mat and I was pleasantly surprised to see some of my work included in the mag and on their promotional disc. I was contacted by the editor a (&#8230;)</p><p><a href="http://www.blog.sizzla-media.co.uk/2008/07/03/im-in-web-designer-mag/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads//wd-current-mag-large.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-257" title="wd-current-mag-large" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads//wd-current-mag-large.jpg" alt="" width="190" height="248" /></a></p>
<p>The latest issue of <a href="http://www.webdesignermag.co.uk/" target="_blank">Web Designer Mag</a> recently landed on my door mat and I was pleasantly surprised to see some of my work included in the mag and on their promotional disc.</p>
<p>I was contacted by the editor a month or two ago about flCodr &#8211; the online repository for actionscript snippets. The site allows you to add and view snippets of actionscript code, perfect for when you can&#8217;t remember how to parse XML.</p>
<p>Web Designer Mag say that:</p>
<p><em>flCodr.com is a repository of code that has been placed in a single centralised location for quick and easy access. The site works by providing a simple search facility to find snippets of code. For instant access, introduce the flCodr search plug-in to your browser. Add a search term, click a link and you are ready to copy and paste the code.</em></p>
<p>I couldn&#8217;t have put it better myself. I&#8217;m really chuffed that I managed to make it to both the mag and the disc!</p>
<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads//picture-1.png" rel="lightbox"><img class="alignnone size-medium wp-image-258" title="picture-1" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads//picture-1-242x300.png" alt="" width="242" height="300" /></a></p>
<p>Head on over to <a href="http://www.webdesignermag.co.uk/" target="_blank">their site</a> to view the mag and subscribe. It&#8217;s well worth the money as each month it&#8217;s full of tips, tutorials and assets to make your creations even better!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2008/07/03/im-in-web-designer-mag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find me on Adobe Exchange!</title>
		<link>http://www.blog.sizzla-media.co.uk/2008/06/24/find-me-on-adobe-exchange/</link>
		<comments>http://www.blog.sizzla-media.co.uk/2008/06/24/find-me-on-adobe-exchange/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 09:58:10 +0000</pubDate>
		<dc:creator>Leon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[locator]]></category>

		<guid isPermaLink="false">http://www.blog.sizzla-media.co.uk/?p=253</guid>
		<description><![CDATA[Looking for a Flash extension that will allow you to find a latitude and longitude based on a location? Then you need my locator panel, which is now also available on the Adobe Exchange. http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&#38;loc=en_us&#38;extid=1526018]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blog.sizzla-media.co.uk/wp-content/uploads//adobe.png" rel="lightbox"><img class="alignnone size-medium wp-image-254" title="adobe" src="http://www.blog.sizzla-media.co.uk/wp-content/uploads//adobe-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Looking for a Flash extension that will allow you to find a latitude and longitude based on a location?</p>
<p>Then you need my <a href="http://www.blog.sizzla-media.co.uk/index.php/2008/04/04/flash-locator-panel/" target="_blank">locator panel</a>, which is now also available on the Adobe Exchange.</p>
<p><a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1526018" target="_blank">http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1526018</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.sizzla-media.co.uk/2008/06/24/find-me-on-adobe-exchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.259 seconds -->
