<?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>Young Dutch Design &#187; Flash</title>
	<atom:link href="http://youngdutchdesign.com/tag/flash/feed" rel="self" type="application/rss+xml" />
	<link>http://youngdutchdesign.com</link>
	<description>Young Dutch Design is a new platform for young designers with frequently new added postings about productdesign, webdesign and other related subjects.</description>
	<lastBuildDate>Fri, 27 Aug 2010 21:09:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>swfIR: Ajust your images on the fly</title>
		<link>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly</link>
		<comments>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly#comments</comments>
		<pubDate>Mon, 27 Apr 2009 00:37:01 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=1202</guid>
		<description><![CDATA[Today I&#8217;ve found something on the internet: swfIR. This flash based widget allows you to rotate images, adds rounded corners (even to Internet Explorer), borders and shadow to specified elements. swfIR (swf Image Replacement) is here to solve some of the design limitations of the standard HTML image and its widely-accepted associated CSS values, while [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1216" title="screenshot24" src="http://youngdutchdesign.com/wp-content/uploads/2009/04/screenshot24.jpeg" alt="screenshot24" width="118" height="118" />Today I&#8217;ve found something on the internet: swfIR. This flash based widget allows you to rotate images, adds rounded corners (even to Internet Explorer), borders and shadow to specified elements.</p>
<p style="padding-left: 30px;"><em class="brandname">swfIR (swf Image Replacement)</em> is here to solve some of the design limitations of the standard <abbr title="Hypertext Markup Language">HTML</abbr> image and its widely-accepted associated <abbr title="Cascading Style Sheets">CSS</abbr> values, while still supporting standards-based design concepts. Using the dark arts of JavaScript and Flash, swfIR gives you the ability to apply an assortment of visual effects to any or all images on your website. Through progressive enhancement, it looks through your page and can easily add some new flavor to standard image styling.</p>
<p style="padding-left: 30px;">Go to <a href="http://www.swfir.com/" target="_blank">the swfIR website</a></p>
<p>I&#8217;ve created a sample page to see it in action! It&#8217;s a pity that swfIR doesn&#8217;t work in combination with Mootools or Prototype&#8230;</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/swfIR.php">View example</a></p>
<p><span id="more-1202"></span>Add the javascript after the elements that has to be modified and before the tag. Specify the selector by id or class.</p>
<pre class="html"><img id="rotate" style="float: right;" src="images/9.jpg" alt="" /></pre>
<h2>Rotate image</h2>
<pre class="javascript">window.onload = function(){
	rotate = new swfir();
	rotate.specify('src', 'js/swfir.swf');
	rotate.specify('rotate', '-5');
	rotate.swap("#rotate");
}</pre>
<h2>Rounded corners</h2>
<pre class="javascript">window.onload = function(){
	round = new swfir();
	round.specify('src', 'js/swfir.swf');
	round.specify('border-color', 'ffffff');
	round.specify('border-radius', '10');
	round.swap("#round");
}</pre>
<h2>Border</h2>
<pre class="javascript">window.onload = function(){
	border = new swfir();
	border.specify('src', 'js/swfir.swf');
	border.specify('border-color', '333333');
	border.specify('border-width', '5');
	border.swap("#border");
}</pre>
<h2>Shadow</h2>
<pre class="javascript">window.onload = function(){
	shadow = new swfir();
	shadow.specify('src', 'js/swfir.swf');
	shadow.specify('shadow-blur', '5');
	shadow.specify('shadow-strength', '.3');
	shadow.swap("#shadow");
}</pre>
<h2>All ajustments</h2>
<pre class="javascript">window.onload = function(){
	all = new swfir();
	all.specify('src', 'js/swfir.swf');
	all.specify('src', 'js/swfir.swf');
	all.specify('rotate', '-5');
	all.specify('border-color', 'ffffff');
	all.specify('border-radius', '10');
	all.specify('border-color', '333333');
	all.specify('border-width', '5');
	all.specify('shadow-blur', '15');
	all.specify('shadow-strength', '.3');
	all.swap("#all");
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
