<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: ActionScript 3.0 Image Galleries</title>
	<atom:link href="http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/feed/" rel="self" type="application/rss+xml" />
	<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/</link>
	<description>Design to build community</description>
	<lastBuildDate>Sat, 07 Nov 2009 23:57:34 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: bauhouse</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-48</link>
		<dc:creator>bauhouse</dc:creator>
		<pubDate>Mon, 24 Nov 2008 15:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-48</guid>
		<description>To compile the script, you&#039;ll notice that I was using the Flex 3 SDK. Using Flash CS3, you&#039;ll likely need to add a document class to your FLA file. Consult the documentation if you need some assistance with this.

I haven&#039;t quite reached that point in my development to load data from an XML file, load photos and populate the grid with images. That would be next, of course, but I haven&#039;t found the time lately. (And I wouldn&#039;t hold my breath.)</description>
		<content:encoded><![CDATA[<p>To compile the script, you&#8217;ll notice that I was using the Flex 3 SDK. Using Flash CS3, you&#8217;ll likely need to add a document class to your FLA file. Consult the documentation if you need some assistance with this.</p>
<p>I haven&#8217;t quite reached that point in my development to load data from an XML file, load photos and populate the grid with images. That would be next, of course, but I haven&#8217;t found the time lately. (And I wouldn&#8217;t hold my breath.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Sparks</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-46</link>
		<dc:creator>Paul Sparks</dc:creator>
		<pubDate>Fri, 21 Nov 2008 19:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-46</guid>
		<description>Hey, 
  I&#039;m actually trying to put all of your script together and make a gallery. How do you go about actually executing the script? 
I&#039;m using Flash CS3.

When I execute the FloatingGrid.as, I just get a white blank SWF.
   Secondly, how would you suggest I go about loading images from an array into the grid? (or better yet, getting data from an XML file, and then converting that to an array).?

Thanks for sharing your code!! I&#039;d love to get this working!</description>
		<content:encoded><![CDATA[<p>Hey,<br />
  I&#8217;m actually trying to put all of your script together and make a gallery. How do you go about actually executing the script?<br />
I&#8217;m using Flash CS3.</p>
<p>When I execute the FloatingGrid.as, I just get a white blank SWF.<br />
   Secondly, how would you suggest I go about loading images from an array into the grid? (or better yet, getting data from an XML file, and then converting that to an array).?</p>
<p>Thanks for sharing your code!! I&#8217;d love to get this working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bauhouse</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-30</link>
		<dc:creator>bauhouse</dc:creator>
		<pubDate>Sat, 09 Aug 2008 15:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-30</guid>
		<description>@cliffzim, that might not be a trivial question. I didn&#039;t know that I didn&#039;t have to declare the function parameters as variables within the function. The reason for doing this might be plain ignorance on my part.

The simple answer would be that this is legacy code from when I had first created the ImageFrame class. I was using the class on its own to create a single image frame, declaring instance variables for each of the characteristics of the object. Then, I decided to control the characteristics of multiple ImageFrame objects by passing the values as method arguments, which I defined as variables declared in the classes that invoked the method.

I hadn&#039;t realized that the instance variables of the ImageFrame class that are set by method parameters are now redundant and can be removed (&lt;code&gt;imageWidth, imageHeight, imageColor, frameColor, padding&lt;/code&gt;). Thanks for pointing that out.</description>
		<content:encoded><![CDATA[<p>@cliffzim, that might not be a trivial question. I didn&#8217;t know that I didn&#8217;t have to declare the function parameters as variables within the function. The reason for doing this might be plain ignorance on my part.</p>
<p>The simple answer would be that this is legacy code from when I had first created the ImageFrame class. I was using the class on its own to create a single image frame, declaring instance variables for each of the characteristics of the object. Then, I decided to control the characteristics of multiple ImageFrame objects by passing the values as method arguments, which I defined as variables declared in the classes that invoked the method.</p>
<p>I hadn&#8217;t realized that the instance variables of the ImageFrame class that are set by method parameters are now redundant and can be removed (<code>imageWidth, imageHeight, imageColor, frameColor, padding</code>). Thanks for pointing that out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cliffzim</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-27</link>
		<dc:creator>cliffzim</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-27</guid>
		<description>Please excuse what might be a trivial question, but in the ImageFrame class the function parameters are redefined in the body of the function as variables.  What&#039;s the reason for doing that??  I would have thought that the compiler would have choked on that, but it appears to make no difference whether those vars are commented out or not.</description>
		<content:encoded><![CDATA[<p>Please excuse what might be a trivial question, but in the ImageFrame class the function parameters are redefined in the body of the function as variables.  What&#8217;s the reason for doing that??  I would have thought that the compiler would have choked on that, but it appears to make no difference whether those vars are commented out or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bauhouse</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-14</link>
		<dc:creator>bauhouse</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-14</guid>
		<description>@noponies, thanks. I&#039;m merely documenting my climb up the learning curve. I&#039;ve been inspired by your code examples, and hope to incorporate your &lt;a href=&quot;http://www.blog.noponies.com/&quot; rel=&quot;nofollow&quot;&gt;ActionScript 3 FullScreen Object Resize Class&lt;/a&gt; at some point.</description>
		<content:encoded><![CDATA[<p>@noponies, thanks. I&#8217;m merely documenting my climb up the learning curve. I&#8217;ve been inspired by your code examples, and hope to incorporate your <a href="http://www.blog.noponies.com/" rel="nofollow">ActionScript 3 FullScreen Object Resize Class</a> at some point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noponies</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-11</link>
		<dc:creator>noponies</dc:creator>
		<pubDate>Wed, 16 Jul 2008 00:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-11</guid>
		<description>Hi,

Nice example you are working through here!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice example you are working through here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bauhouse</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-7</link>
		<dc:creator>bauhouse</dc:creator>
		<pubDate>Sun, 13 Jul 2008 13:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-7</guid>
		<description>Thanks for the demo of your application. That looks very promising. And the photography is beautiful. I&#039;m especially intrigued by what appears to be a work in progress: the Wall Designer. Nice work.</description>
		<content:encoded><![CDATA[<p>Thanks for the demo of your application. That looks very promising. And the photography is beautiful. I&#8217;m especially intrigued by what appears to be a work in progress: the Wall Designer. Nice work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Hooks</title>
		<link>http://bauhouse.wordpress.com/2008/07/12/actionscript-30-image-galleries/#comment-5</link>
		<dc:creator>Joel Hooks</dc:creator>
		<pubDate>Sun, 13 Jul 2008 07:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://bauhouse.wordpress.com/?p=16#comment-5</guid>
		<description>I&#039;m looking forward to giving your code a thorough study. Thanks for sharing your research. I&#039;m 100% happy with my solution, though it does work for our purpose.

http://joelhooks.com/session

u/p:demo_client

Here it is in the actual application.

Cheers,

Joel</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking forward to giving your code a thorough study. Thanks for sharing your research. I&#8217;m 100% happy with my solution, though it does work for our purpose.</p>
<p><a href="http://joelhooks.com/session" rel="nofollow">http://joelhooks.com/session</a></p>
<p>u/p:demo_client</p>
<p>Here it is in the actual application.</p>
<p>Cheers,</p>
<p>Joel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
