<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Creating a simple image gallery with the Flex Tree control</title>
	<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/</link>
	<description>A bunch of examples for Adobe Flex and ActionScript</description>
	<pubDate>Fri, 05 Dec 2008 00:38:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Luciano - Brazil</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16579</link>
		<author>Luciano - Brazil</author>
		<pubDate>Wed, 05 Nov 2008 05:09:54 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16579</guid>
		<description>Thanks very much</description>
		<content:encoded><![CDATA[<p>Thanks very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flex lover</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16539</link>
		<author>flex lover</author>
		<pubDate>Mon, 03 Nov 2008 20:19:35 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16539</guid>
		<description>found the image center place</description>
		<content:encoded><![CDATA[<p>found the image center place</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flex lover</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16538</link>
		<author>flex lover</author>
		<pubDate>Mon, 03 Nov 2008 20:16:35 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16538</guid>
		<description>great, thanks for thant and thanks for the quick reply,

2 other questions.

how can i have an image or the first image be up already?

how do i center the image?

thanks so much</description>
		<content:encoded><![CDATA[<p>great, thanks for thant and thanks for the quick reply,</p>
<p>2 other questions.</p>
<p>how can i have an image or the first image be up already?</p>
<p>how do i center the image?</p>
<p>thanks so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16536</link>
		<author>peterd</author>
		<pubDate>Mon, 03 Nov 2008 16:38:57 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16536</guid>
		<description>flex lover,

You can use the &lt;code&gt;navigateToURL()&lt;/code&gt; method, as seen in the following example:

&lt;pre class="code"&gt;
&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"&#62;

    &#60;mx:Script&#62;
        &#60;![CDATA[
            import flash.net.navigateToURL;

            private function img_doubleClick(evt:MouseEvent):void {
                var urlReq:URLRequest = new URLRequest(evt.currentTarget.source);
                navigateToURL(urlReq, "_blank");
            }
        ]]&#62;
    &#60;/mx:Script&#62;

    &#60;mx:Image id="img1"
            source="http://www.helpexamples.com/flash/images/image1.jpg"
            doubleClickEnabled="true"
            doubleClick="img_doubleClick(event);" /&#62;

    &#60;mx:Image id="img2"
            source="http://www.helpexamples.com/flash/images/image2.jpg"
            doubleClickEnabled="true"
            doubleClick="img_doubleClick(event);" /&#62;

&#60;/mx:Application&#62;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>flex lover,</p>
<p>You can use the <code>navigateToURL()</code> method, as seen in the following example:</p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"&gt;

    &lt;mx:Script&gt;
        &lt;![CDATA[
            import flash.net.navigateToURL;

            private function img_doubleClick(evt:MouseEvent):void {
                var urlReq:URLRequest = new URLRequest(evt.currentTarget.source);
                navigateToURL(urlReq, "_blank");
            }
        ]]&gt;
    &lt;/mx:Script&gt;

    &lt;mx:Image id="img1"
            source="http://www.helpexamples.com/flash/images/image1.jpg"
            doubleClickEnabled="true"
            doubleClick="img_doubleClick(event);" /&gt;

    &lt;mx:Image id="img2"
            source="http://www.helpexamples.com/flash/images/image2.jpg"
            doubleClickEnabled="true"
            doubleClick="img_doubleClick(event);" /&gt;

&lt;/mx:Application&gt;
</pre>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flex lover</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16533</link>
		<author>flex lover</author>
		<pubDate>Mon, 03 Nov 2008 14:37:01 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-16533</guid>
		<description>how would you do a link so when you click on the large image it would take you to a url?

thanks</description>
		<content:encoded><![CDATA[<p>how would you do a link so when you click on the large image it would take you to a url?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: delta</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-15086</link>
		<author>delta</author>
		<pubDate>Mon, 01 Sep 2008 09:13:10 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-15086</guid>
		<description>i want one more submenu in the list like if i click on the menu folder "ALL" i can see a list.im that there is flash link.if i click on flash link i want one more submenu in that like actionscript etc..how can i make that possible...</description>
		<content:encoded><![CDATA[<p>i want one more submenu in the list like if i click on the menu folder &#8220;ALL&#8221; i can see a list.im that there is flash link.if i click on flash link i want one more submenu in that like actionscript etc..how can i make that possible&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: delta</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-15002</link>
		<author>delta</author>
		<pubDate>Thu, 28 Aug 2008 09:17:49 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-15002</guid>
		<description>Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...Peter Thank You So Much...</description>
		<content:encoded><![CDATA[<p>Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;Peter Thank You So Much&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14997</link>
		<author>peterd</author>
		<pubDate>Thu, 28 Aug 2008 07:36:07 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14997</guid>
		<description>delta,

There is an example of setting a background image on a Flex VideoDisplay control at &lt;a href="http://blog.flexexamples.com/2008/08/28/setting-a-background-image-on-a-videodisplay-control-in-flex/" rel="nofollow"&gt;&lt;u&gt;"Setting a background image on a VideoDisplay control in Flex"&lt;/u&gt;&lt;/a&gt;.

Peter</description>
		<content:encoded><![CDATA[<p>delta,</p>
<p>There is an example of setting a background image on a Flex VideoDisplay control at <a href="http://blog.flexexamples.com/2008/08/28/setting-a-background-image-on-a-videodisplay-control-in-flex/" rel="nofollow"><u>&#8220;Setting a background image on a VideoDisplay control in Flex&#8221;</u></a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: delta</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14995</link>
		<author>delta</author>
		<pubDate>Thu, 28 Aug 2008 05:48:08 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14995</guid>
		<description>Hi Perter,

I am very sorry to trouble u again,actually i dont have good knowledge in flex.anyway my client gave few images for background to display in bg of treemenu and bg of videodisplay.i dont know whether it is possible in flex to put those images in bg's...because in flex the components were used. And in the components background the designs must be used which were given by client..

So can u help me in flash with treemenu(with 2 submenus inside,and one more submenu in the first submenu) which can be edited with xml for menus and linking them to flv files to load inside flash in a flvPlayer component etc...

Please save my job,i am in new job and this is my first project and i dont want to loose my impression...i asked many people nobody could do it...i have hope in u ...

I will be very thankful to u if u do this help for me.....

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Perter,</p>
<p>I am very sorry to trouble u again,actually i dont have good knowledge in flex.anyway my client gave few images for background to display in bg of treemenu and bg of videodisplay.i dont know whether it is possible in flex to put those images in bg&#8217;s&#8230;because in flex the components were used. And in the components background the designs must be used which were given by client..</p>
<p>So can u help me in flash with treemenu(with 2 submenus inside,and one more submenu in the first submenu) which can be edited with xml for menus and linking them to flv files to load inside flash in a flvPlayer component etc&#8230;</p>
<p>Please save my job,i am in new job and this is my first project and i dont want to loose my impression&#8230;i asked many people nobody could do it&#8230;i have hope in u &#8230;</p>
<p>I will be very thankful to u if u do this help for me&#8230;..</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14974</link>
		<author>peterd</author>
		<pubDate>Wed, 27 Aug 2008 14:32:59 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/04/creating-a-simple-image-gallery-with-the-flex-tree-control/#comment-14974</guid>
		<description>delta,

If you want to play videos instead of images, use the VideoDisplay control instead of the SWFLoader control. Apart from that, I don't think you'll need to change any code.

Peter</description>
		<content:encoded><![CDATA[<p>delta,</p>
<p>If you want to play videos instead of images, use the VideoDisplay control instead of the SWFLoader control. Apart from that, I don&#8217;t think you&#8217;ll need to change any code.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
</channel>
</rss>
