<?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"
	>
<channel>
	<title>Comments for Bluefire Blog</title>
	<atom:link href="http://blog.bluefire.tv/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.bluefire.tv</link>
	<description>Tasty bytes on rich media</description>
	<pubDate>Sat, 18 May 2013 08:49:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on Rich Media EPUB Demo by admin</title>
		<link>http://blog.bluefire.tv/?p=60#comment-7950</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=60#comment-7950</guid>
		<description>Debbie,
Currently iPhone does not support Flash media types.  Hopefully that will change soon, but for the moment, you'd want to craft the epub so that it degrades gracefully when viewed on platforms with limited media format support.  While it may take some time for Flash to get to iPhone , it might well be possible sooner to use specific media types that have broader support.  E.g. perhaps video clips could be in H264 format, which could be displayed by Quicktime, Flash, and (soon) Silverlight depending on what the device supports.  That said, I do not know of an iPhone epub reader that currently supports any video playback.  Though it seems that it could be added soon if there was demand/content.  I think the desktop is going to have to be the place where the envelope is first pushed, and that could prompt support on the mobile side.</description>
		<content:encoded><![CDATA[<p>Debbie,<br />
Currently iPhone does not support Flash media types.  Hopefully that will change soon, but for the moment, you&#8217;d want to craft the epub so that it degrades gracefully when viewed on platforms with limited media format support.  While it may take some time for Flash to get to iPhone , it might well be possible sooner to use specific media types that have broader support.  E.g. perhaps video clips could be in H264 format, which could be displayed by Quicktime, Flash, and (soon) Silverlight depending on what the device supports.  That said, I do not know of an iPhone epub reader that currently supports any video playback.  Though it seems that it could be added soon if there was demand/content.  I think the desktop is going to have to be the place where the envelope is first pushed, and that could prompt support on the mobile side.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rich Media EPUB Demo by Patrick</title>
		<link>http://blog.bluefire.tv/?p=60#comment-7948</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=60#comment-7948</guid>
		<description>Good catch.  I posted one with a toc up there now.  Let us know how it works.

Patrick.</description>
		<content:encoded><![CDATA[<p>Good catch.  I posted one with a toc up there now.  Let us know how it works.</p>
<p>Patrick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Feedbooks RSS Browser - Part 1 by Patrick</title>
		<link>http://blog.bluefire.tv/?p=49#comment-7878</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 22 Jan 2009 19:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=49#comment-7878</guid>
		<description>Thank you for this comment, Phil.  Any good Silverlight data is appreciated!  I will check out the WCF services for future posts. -Patrick.</description>
		<content:encoded><![CDATA[<p>Thank you for this comment, Phil.  Any good Silverlight data is appreciated!  I will check out the WCF services for future posts. -Patrick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Feedbooks RSS Browser - Part 1 by Phil Steel</title>
		<link>http://blog.bluefire.tv/?p=49#comment-7874</link>
		<dc:creator>Phil Steel</dc:creator>
		<pubDate>Thu, 22 Jan 2009 09:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=49#comment-7874</guid>
		<description>Hi Patrick

I had an issue with the Silverlight WebClient class, in that a security error is thrown if you are inside a corporate network and your browser uses a proxy server address to connect to the internet.(in IE, tools &#62; Internet options &#62; Connections &#62; LAN Connection). You'll notice that because Silverlight is a cut down version of the CLR, there is no 'Proxy' property you can set on the WebClient class.

The work around: instead of using the Silverlight WebClient class, I had to create a WCF service in the hosting ASP.NET website and use the normal WebClient class in System.Net, which enabled me to set the Proxy address:

[OperationContract]
public string GetRssFeedPosts(string url, string proxyAddress) {
WebClient client = new WebClient();
if(!String.IsNullOrEmpty(proxyAddress))
  client.Proxy = new WebProxy(proxyAddress);
return client.DownloadString(url);
}

Phil</description>
		<content:encoded><![CDATA[<p>Hi Patrick</p>
<p>I had an issue with the Silverlight WebClient class, in that a security error is thrown if you are inside a corporate network and your browser uses a proxy server address to connect to the internet.(in IE, tools &gt; Internet options &gt; Connections &gt; LAN Connection). You&#8217;ll notice that because Silverlight is a cut down version of the CLR, there is no &#8216;Proxy&#8217; property you can set on the WebClient class.</p>
<p>The work around: instead of using the Silverlight WebClient class, I had to create a WCF service in the hosting ASP.NET website and use the normal WebClient class in System.Net, which enabled me to set the Proxy address:</p>
<p>[OperationContract]<br />
public string GetRssFeedPosts(string url, string proxyAddress) {<br />
WebClient client = new WebClient();<br />
if(!String.IsNullOrEmpty(proxyAddress))<br />
  client.Proxy = new WebProxy(proxyAddress);<br />
return client.DownloadString(url);<br />
}</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop Lightroom 1.0 Flash Gallery Tips and Tricks #15: Working in Advanced Mode by kvon</title>
		<link>http://blog.bluefire.tv/?p=28#comment-7861</link>
		<dc:creator>kvon</dc:creator>
		<pubDate>Thu, 04 Dec 2008 15:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=32#comment-7861</guid>
		<description>Sorry for dredging up an old thread but I just stumbled across this.  The advanced mode tip is fantastic, but for all the settings this opens up, one of them is NOT the copyright watermark!!  Would love to know if you have some tricks up your sleeve for that?</description>
		<content:encoded><![CDATA[<p>Sorry for dredging up an old thread but I just stumbled across this.  The advanced mode tip is fantastic, but for all the settings this opens up, one of them is NOT the copyright watermark!!  Would love to know if you have some tricks up your sleeve for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Features for AMG Flash Galleries by mhuk05</title>
		<link>http://blog.bluefire.tv/?p=37#comment-7857</link>
		<dc:creator>mhuk05</dc:creator>
		<pubDate>Thu, 26 Jun 2008 00:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=41#comment-7857</guid>
		<description>In response to your January 18th reply, which file do you have to edit to use a large image, like the one that you use on the About page for http://www.bluefire.tv/onlinePortfolio.html ?

I have tried a similar sized image and it crops the image and also wraps the text in a strange waay.

In the main post you say:

"you simply type in new menu and menu item names, define the event for each menu item, save it, and Walla! it is that easy."

In which file do you define these events (voila!)?

Thanks.</description>
		<content:encoded><![CDATA[<p>In response to your January 18th reply, which file do you have to edit to use a large image, like the one that you use on the About page for <a href="http://www.bluefire.tv/onlinePortfolio.html" rel="nofollow">http://www.bluefire.tv/onlinePortfolio.html</a> ?</p>
<p>I have tried a similar sized image and it crops the image and also wraps the text in a strange waay.</p>
<p>In the main post you say:</p>
<p>&#8220;you simply type in new menu and menu item names, define the event for each menu item, save it, and Walla! it is that easy.&#8221;</p>
<p>In which file do you define these events (voila!)?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Links to Lightroom/AMG Flash Galleries by Cheryl</title>
		<link>http://blog.bluefire.tv/?p=40#comment-3879</link>
		<dc:creator>Cheryl</dc:creator>
		<pubDate>Fri, 02 May 2008 05:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=44#comment-3879</guid>
		<description>I have tried you suggestion of linking for lightroom and have not succeded.  I have tried the very first suggestion and have tried the #3.  I would like to make number 3 work.  I have entered the info in the site title on the xml page but all I get is the title underlined when I roll over it.  Nothing happens when I click either area that the lines show.  The directions on how to put the label tag into the site title was unclear. The
code in my  the xml page reads:  &lt;a href="http://www.ceaimages.com" rel="nofollow"&gt;Back to Cea Images Photo Galleries&lt;/a&gt;
Do you have any further suggestions.  I was trying to make the gallery open inside a templet as shown in Matt K. DVD Photoshop to Dreamweaver but I can't seem to make that work either.  I am using CS3 and Lightroom 1.4.1

I hope you have the answer.  Thanks,  Cheryl</description>
		<content:encoded><![CDATA[<p>I have tried you suggestion of linking for lightroom and have not succeded.  I have tried the very first suggestion and have tried the #3.  I would like to make number 3 work.  I have entered the info in the site title on the xml page but all I get is the title underlined when I roll over it.  Nothing happens when I click either area that the lines show.  The directions on how to put the label tag into the site title was unclear. The<br />
code in my  the xml page reads:  <a href="http://www.ceaimages.com" rel="nofollow">Back to Cea Images Photo Galleries</a><br />
Do you have any further suggestions.  I was trying to make the gallery open inside a templet as shown in Matt K. DVD Photoshop to Dreamweaver but I can&#8217;t seem to make that work either.  I am using CS3 and Lightroom 1.4.1</p>
<p>I hope you have the answer.  Thanks,  Cheryl</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop Lightroom Flash Gallery Tips and Tricks #3: Embedding a Flash gallery into a web page at a fixed size by Harry</title>
		<link>http://blog.bluefire.tv/?p=14#comment-3582</link>
		<dc:creator>Harry</dc:creator>
		<pubDate>Tue, 29 Apr 2008 23:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=18#comment-3582</guid>
		<description>Thanks so much for providing these tips and tricks. While a flash programmer, I enjoy the convenience of LightRoom for generating the xml, differing photo sizes, captions, labels, etc. Your tips and tricks #1 solved a direct need: I wanted to have a gradient background for my entire site and this allowed me to do so... will be checking in soon.

Ideally, it would be great to have the fla file for a given version of lightRoom, as I am a flash programer and could make rudimentery changes if required. (making auto play function, for example) While I could use the open source AMG, it would not auto consume the output from LightRoom. 

Though I must say that so far you've had a property for everything I've wanted to fix!!

   Thanks again,
       Harry</description>
		<content:encoded><![CDATA[<p>Thanks so much for providing these tips and tricks. While a flash programmer, I enjoy the convenience of LightRoom for generating the xml, differing photo sizes, captions, labels, etc. Your tips and tricks #1 solved a direct need: I wanted to have a gradient background for my entire site and this allowed me to do so&#8230; will be checking in soon.</p>
<p>Ideally, it would be great to have the fla file for a given version of lightRoom, as I am a flash programer and could make rudimentery changes if required. (making auto play function, for example) While I could use the open source AMG, it would not auto consume the output from LightRoom. </p>
<p>Though I must say that so far you&#8217;ve had a property for everything I&#8217;ve wanted to fix!!</p>
<p>   Thanks again,<br />
       Harry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop Lightroom 1.0 Flash Gallery Tips and Tricks #5: Customizing Text and Captions by Anton Marc</title>
		<link>http://blog.bluefire.tv/?p=16#comment-2742</link>
		<dc:creator>Anton Marc</dc:creator>
		<pubDate>Thu, 24 Apr 2008 18:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=20#comment-2742</guid>
		<description>Is there some way to get three lines of Image Info text in a flash gallery? 
As far as I can tell there is no way to get more than a single line each for "Title" and "Caption" (other than typing enough text to wrap around into an additional line). I need to center three short lines of info below each image in the gallery.</description>
		<content:encoded><![CDATA[<p>Is there some way to get three lines of Image Info text in a flash gallery?<br />
As far as I can tell there is no way to get more than a single line each for &#8220;Title&#8221; and &#8220;Caption&#8221; (other than typing enough text to wrap around into an additional line). I need to center three short lines of info below each image in the gallery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop Lightroom 1.0 Flash Gallery Tips and Tricks #5: Customizing Text and Captions by Robin Sinton</title>
		<link>http://blog.bluefire.tv/?p=16#comment-17</link>
		<dc:creator>Robin Sinton</dc:creator>
		<pubDate>Sun, 02 Mar 2008 17:08:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=20#comment-17</guid>
		<description>Is it possible to change the size of the text in the menu bar (and also the width of the menu bar itself)? I'd like to make it just a tads larger. I've looked in the xml's and can't find anything in this area.

regards

Robin Sinton</description>
		<content:encoded><![CDATA[<p>Is it possible to change the size of the text in the menu bar (and also the width of the menu bar itself)? I&#8217;d like to make it just a tads larger. I&#8217;ve looked in the xml&#8217;s and can&#8217;t find anything in this area.</p>
<p>regards</p>
<p>Robin Sinton</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Features for AMG Flash Galleries by Lee Edward</title>
		<link>http://blog.bluefire.tv/?p=37#comment-360</link>
		<dc:creator>Lee Edward</dc:creator>
		<pubDate>Mon, 25 Feb 2008 23:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=41#comment-360</guid>
		<description>Hi,
I'm having problems writing an event code and pointer code in thelocaltext.xml to change my imagegallery. Hope you help...
Thanks Lee</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m having problems writing an event code and pointer code in thelocaltext.xml to change my imagegallery. Hope you help&#8230;<br />
Thanks Lee</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Features for AMG Flash Galleries by Robin Sinton</title>
		<link>http://blog.bluefire.tv/?p=37#comment-364</link>
		<dc:creator>Robin Sinton</dc:creator>
		<pubDate>Tue, 19 Feb 2008 12:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=41#comment-364</guid>
		<description>Is it possible to alter the size (width) of the menu bar? I'd like to make it just a little bit thicker. If it is, how do you do it and also is it possible to use other fonts?

Robin Sinton</description>
		<content:encoded><![CDATA[<p>Is it possible to alter the size (width) of the menu bar? I&#8217;d like to make it just a little bit thicker. If it is, how do you do it and also is it possible to use other fonts?</p>
<p>Robin Sinton</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Features for AMG Flash Galleries by Administrator</title>
		<link>http://blog.bluefire.tv/?p=37#comment-352</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Mon, 11 Feb 2008 17:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=41#comment-352</guid>
		<description>Joey,
Only sub menu items can be links.  You can make the "contact info" string a link though (in the far right of the menu bar)</description>
		<content:encoded><![CDATA[<p>Joey,<br />
Only sub menu items can be links.  You can make the &#8220;contact info&#8221; string a link though (in the far right of the menu bar)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Menu Features for AMG Flash Galleries by Joey Schwartz</title>
		<link>http://blog.bluefire.tv/?p=37#comment-359</link>
		<dc:creator>Joey Schwartz</dc:creator>
		<pubDate>Fri, 08 Feb 2008 13:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=41#comment-359</guid>
		<description>Hi

I have been successful at using the new AMG gallery menues. The one thing I cannot figure out is how to have one main menu item in place of "View" that says home and to have the link work. As a sub menue I can get it to work but not as the top menue.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I have been successful at using the new AMG gallery menues. The one thing I cannot figure out is how to have one main menu item in place of &#8220;View&#8221; that says home and to have the link work. As a sub menue I can get it to work but not as the top menue.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop Lightroom 1.0 Flash Gallery Tips and Tricks #5: Customizing Text and Captions by Robin Sinton</title>
		<link>http://blog.bluefire.tv/?p=16#comment-18</link>
		<dc:creator>Robin Sinton</dc:creator>
		<pubDate>Sun, 27 Jan 2008 11:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bluefire.tv/?p=20#comment-18</guid>
		<description>Hi all. Is there any way to alter the size of the type in the menu bar. I've tried adding a line of code specifying the size but nothing changes. Any tips gratefully welcomed.</description>
		<content:encoded><![CDATA[<p>Hi all. Is there any way to alter the size of the type in the menu bar. I&#8217;ve tried adding a line of code specifying the size but nothing changes. Any tips gratefully welcomed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
