<?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/"
		>
<channel>
	<title>Comments for A Learning Experience</title>
	<atom:link href="http://lukerymarz.com/alearningexperience/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://lukerymarz.com/alearningexperience</link>
	<description>Hobbies of a Software Engineer</description>
	<lastBuildDate>Wed, 16 Jun 2010 08:17:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Facebook Photo Browser: SlickPhoto by lrymarz</title>
		<link>http://lukerymarz.com/alearningexperience/2010/03/facebook-photo-browser-slickphoto.html/comment-page-1#comment-124</link>
		<dc:creator>lrymarz</dc:creator>
		<pubDate>Wed, 16 Jun 2010 08:17:23 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2010/03/facebook-photo-browser-slickphoto.html#comment-124</guid>
		<description>Hi Arjun,

Are you setting your API Key and Secret Key correctly in the sample apps from the Adobe page?  I downloaded the third sample and thought it was broken until I remembered that I had to set the API Key and Secret key.  After that it worked fine.</description>
		<content:encoded><![CDATA[<p>Hi Arjun,</p>
<p>Are you setting your API Key and Secret Key correctly in the sample apps from the Adobe page?  I downloaded the third sample and thought it was broken until I remembered that I had to set the API Key and Secret key.  After that it worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Photo Browser: SlickPhoto by arjun</title>
		<link>http://lukerymarz.com/alearningexperience/2010/03/facebook-photo-browser-slickphoto.html/comment-page-1#comment-120</link>
		<dc:creator>arjun</dc:creator>
		<pubDate>Mon, 14 Jun 2010 09:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2010/03/facebook-photo-browser-slickphoto.html#comment-120</guid>
		<description>Hi,

    Your application works great. I need your help in fetching album and photos from the facebook. I have working the examples provided in http://www.adobe.com/devnet/facebook/samples/index.html. here i am able to fetch userdata but album and photos are showing empty even thought i have albums and photos in my account. 
expecting i am missing some while creating application. 
   note: i have setup application type as desktop in advance settings

Please help me out...    

below is my part of code for fetching data.


			private function getPhotoAlbums():void {
				trace(&quot;FacebookImageBrowser.getPhotoAlbums()&quot;)
				var call:FacebookCall = fbook.post(new GetAlbums(fbook.uid));
				call.addEventListener(FacebookEvent.COMPLETE, handleGetAlbumsResponse);
				
			}
		
			private function handleGetAlbumsResponse(e:FacebookEvent):void {
				var albumsResponseData:GetAlbumsData = e.data as GetAlbumsData;
				
				if (!albumsResponseData &#124;&#124; e.error){ // an error occurred
					status.text = &quot;Error&quot;;
					return;
				}
				
				facebookPhotoAlbums = new ArrayCollection();
																		
				for(var i:int = 0; i &lt; albumsResponseData.albumCollection.length; i++){
					facebookPhotoAlbums.addItem(albumsResponseData.albumCollection.getItemAt(i));	
				}
			
			}
			
			private function handleGetPhotosResponse(e:FacebookEvent):void {
				var photosResponseData:GetPhotosData = e.data as GetPhotosData;
				
				if (!photosResponseData &#124;&#124; e.error){ // an error occurred
					status.text = &quot;Error&quot;;
					return;
				}				
										
				facebookPhotos = new ArrayCollection();
												
				for(var i:int = 0; i &lt; photosResponseData.photoCollection.length; i++){
					facebookPhotos.addItem(photosResponseData.photoCollection.getItemAt(i));	
				}
			}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>    Your application works great. I need your help in fetching album and photos from the facebook. I have working the examples provided in <a href="http://www.adobe.com/devnet/facebook/samples/index.html" rel="nofollow">http://www.adobe.com/devnet/facebook/samples/index.html</a>. here i am able to fetch userdata but album and photos are showing empty even thought i have albums and photos in my account.<br />
expecting i am missing some while creating application.<br />
   note: i have setup application type as desktop in advance settings</p>
<p>Please help me out&#8230;    </p>
<p>below is my part of code for fetching data.</p>
<p>			private function getPhotoAlbums():void {<br />
				trace(&#8220;FacebookImageBrowser.getPhotoAlbums()&#8221;)<br />
				var call:FacebookCall = fbook.post(new GetAlbums(fbook.uid));<br />
				call.addEventListener(FacebookEvent.COMPLETE, handleGetAlbumsResponse);</p>
<p>			}</p>
<p>			private function handleGetAlbumsResponse(e:FacebookEvent):void {<br />
				var albumsResponseData:GetAlbumsData = e.data as GetAlbumsData;</p>
<p>				if (!albumsResponseData || e.error){ // an error occurred<br />
					status.text = &#8220;Error&#8221;;<br />
					return;<br />
				}</p>
<p>				facebookPhotoAlbums = new ArrayCollection();</p>
<p>				for(var i:int = 0; i &lt; albumsResponseData.albumCollection.length; i++){<br />
					facebookPhotoAlbums.addItem(albumsResponseData.albumCollection.getItemAt(i));<br />
				}</p>
<p>			}</p>
<p>			private function handleGetPhotosResponse(e:FacebookEvent):void {<br />
				var photosResponseData:GetPhotosData = e.data as GetPhotosData;</p>
<p>				if (!photosResponseData || e.error){ // an error occurred<br />
					status.text = &quot;Error&quot;;<br />
					return;<br />
				}				</p>
<p>				facebookPhotos = new ArrayCollection();</p>
<p>				for(var i:int = 0; i &lt; photosResponseData.photoCollection.length; i++){<br />
					facebookPhotos.addItem(photosResponseData.photoCollection.getItemAt(i));<br />
				}<br />
			}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Code by jon</title>
		<link>http://lukerymarz.com/alearningexperience/2008/03/new-menu-code.html/comment-page-1#comment-64</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Sat, 15 May 2010 13:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2008/03/new-menu-code.html#comment-64</guid>
		<description>Hi Luke, 

Thanks for the menu code, I had started on my own but was unsure how the menu would fire events off as I&#039;m still trying to get my head around events delegates etc etc.

PS. We have tonnes of Spectrum servers here at our station, and they&#039;re sweet kit to work with ;)

Oh and nice retro gaming table by the way.

Cheers.

Jon</description>
		<content:encoded><![CDATA[<p>Hi Luke, </p>
<p>Thanks for the menu code, I had started on my own but was unsure how the menu would fire events off as I&#8217;m still trying to get my head around events delegates etc etc.</p>
<p>PS. We have tonnes of Spectrum servers here at our station, and they&#8217;re sweet kit to work with <img src='http://lukerymarz.com/alearningexperience/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Oh and nice retro gaming table by the way.</p>
<p>Cheers.</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photo Gallery Maker 1.1 by Photo Gallery Maker 1.2 &#171; A Learning Experience</title>
		<link>http://lukerymarz.com/alearningexperience/2009/11/photo-gallery-maker-1-1.html/comment-page-1#comment-45</link>
		<dc:creator>Photo Gallery Maker 1.2 &#171; A Learning Experience</dc:creator>
		<pubDate>Mon, 26 Apr 2010 18:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2009/11/photo-gallery-maker-1-1.html#comment-45</guid>
		<description>[...] more info, see the 1.1 post or the original [...]</description>
		<content:encoded><![CDATA[<p>[...] more info, see the 1.1 post or the original [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple XNA Progress Bar by Nathan</title>
		<link>http://lukerymarz.com/alearningexperience/2009/04/simple-xna-progress-bar.html/comment-page-1#comment-44</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Wed, 21 Apr 2010 22:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2009/04/simple-xna-progress-bar.html#comment-44</guid>
		<description>I have a coulpe questions about the code - I&#039;ve used your ProgressBar and it works perfectly - I also used it as a template for a TextBox but some of the properties are non-responsive like setting BorderLineWidth.. its strange, if you email me I&#039;ll show you the code I having problems with.</description>
		<content:encoded><![CDATA[<p>I have a coulpe questions about the code &#8211; I&#39;ve used your ProgressBar and it works perfectly &#8211; I also used it as a template for a TextBox but some of the properties are non-responsive like setting BorderLineWidth.. its strange, if you email me I&#39;ll show you the code I having problems with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with OpenGL &#8211; Mouse Interaction by Fatena</title>
		<link>http://lukerymarz.com/alearningexperience/2008/04/playing-with-opengl-mouse-interaction.html/comment-page-1#comment-43</link>
		<dc:creator>Fatena</dc:creator>
		<pubDate>Tue, 16 Mar 2010 17:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2008/04/playing-with-opengl-mouse-interaction.html#comment-43</guid>
		<description>Do you have the same program in C?? I would really appreciate it</description>
		<content:encoded><![CDATA[<p>Do you have the same program in C?? I would really appreciate it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe XFDF by Alessio</title>
		<link>http://lukerymarz.com/alearningexperience/2008/10/adobe-xfdf.html/comment-page-1#comment-42</link>
		<dc:creator>Alessio</dc:creator>
		<pubDate>Tue, 16 Feb 2010 15:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2008/10/adobe-xfdf.html#comment-42</guid>
		<description>Hello,&lt;br /&gt;&lt;br /&gt;Very very very nice work!&lt;br /&gt;&lt;br /&gt;does anyone knows a method to make an expandable text area into a PDF template instead of a fixed dimension one?&lt;br /&gt;&lt;br /&gt;I&#039;ll try to explain me better: I&#039;d like to have a text area that expands itself accordling to how much data it have to show (passed trough specific XFDF filed value).&lt;br /&gt;&lt;br /&gt;The best way I&#039;d like to see is something like the Microsoft word template, if you insert an external txt file upon it, the txt content writes itself into the designed area and, if data is too much, another document is created from the template with the same structure and the exceeding data filled into&lt;br /&gt;&lt;br /&gt;thanks everyone, regards</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Very very very nice work!</p>
<p>does anyone knows a method to make an expandable text area into a PDF template instead of a fixed dimension one?</p>
<p>I&#39;ll try to explain me better: I&#39;d like to have a text area that expands itself accordling to how much data it have to show (passed trough specific XFDF filed value).</p>
<p>The best way I&#39;d like to see is something like the Microsoft word template, if you insert an external txt file upon it, the txt content writes itself into the designed area and, if data is too much, another document is created from the template with the same structure and the exceeding data filled into</p>
<p>thanks everyone, regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook App Directory, Possible Frustrations by Luke Rymarz</title>
		<link>http://lukerymarz.com/alearningexperience/2010/02/facebook-app-directory-possible-frustrations.html/comment-page-1#comment-41</link>
		<dc:creator>Luke Rymarz</dc:creator>
		<pubDate>Mon, 08 Feb 2010 16:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2010/02/facebook-app-directory-possible-frustrations.html#comment-41</guid>
		<description>@HarshyW:&lt;br /&gt;&lt;br /&gt;Yeah it&#039;s a bit ironic too, since I just recently read an interview with a fellow from Facebook and he couldn&#039;t have spoken more highly of his team of hardcore programmers working on the database code.  :-/</description>
		<content:encoded><![CDATA[<p>@HarshyW:</p>
<p>Yeah it&#39;s a bit ironic too, since I just recently read an interview with a fellow from Facebook and he couldn&#39;t have spoken more highly of his team of hardcore programmers working on the database code.  :-/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook App Directory, Possible Frustrations by HarshyW</title>
		<link>http://lukerymarz.com/alearningexperience/2010/02/facebook-app-directory-possible-frustrations.html/comment-page-1#comment-40</link>
		<dc:creator>HarshyW</dc:creator>
		<pubDate>Mon, 08 Feb 2010 16:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2010/02/facebook-app-directory-possible-frustrations.html#comment-40</guid>
		<description>Bummer dude.  Also surprising to hear that it&#039;s been broken for so long.</description>
		<content:encoded><![CDATA[<p>Bummer dude.  Also surprising to hear that it&#39;s been broken for so long.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with OpenGL &#8211; Mouse Interaction by Luigi</title>
		<link>http://lukerymarz.com/alearningexperience/2008/04/playing-with-opengl-mouse-interaction.html/comment-page-1#comment-39</link>
		<dc:creator>Luigi</dc:creator>
		<pubDate>Sun, 10 Jan 2010 12:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://lukerymarz.com/alearningexperience/2008/04/playing-with-opengl-mouse-interaction.html#comment-39</guid>
		<description>Week of we research ended here! Thanks!</description>
		<content:encoded><![CDATA[<p>Week of we research ended here! Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
