<?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: Changing the arrow button skins on a Flex container&#8217;s scroll bars</title>
	<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/</link>
	<description>A bunch of examples for Adobe Flex and ActionScript</description>
	<pubDate>Fri, 05 Dec 2008 01:04:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: John K. Mak</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7129</link>
		<author>John K. Mak</author>
		<pubDate>Fri, 22 Feb 2008 01:11:03 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7129</guid>
		<description>Hey Peterd.  Never mind, I was able to figure it out by myself.</description>
		<content:encoded><![CDATA[<p>Hey Peterd.  Never mind, I was able to figure it out by myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John K.</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7120</link>
		<author>John K.</author>
		<pubDate>Thu, 21 Feb 2008 18:40:12 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7120</guid>
		<description>Nice code Peterd.  I just have a question for you.  Is there a way to edit the width of the scrollbar?</description>
		<content:encoded><![CDATA[<p>Nice code Peterd.  I just have a question for you.  Is there a way to edit the width of the scrollbar?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7057</link>
		<author>peterd</author>
		<pubDate>Mon, 18 Feb 2008 16:14:30 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7057</guid>
		<description>Eric,

Good question! Instead of using &lt;code&gt;Embed()&lt;/code&gt; to embed an image try using &lt;code&gt;ClassReference(null)&lt;/code&gt;:

&lt;pre class="code"&gt;
&#60;mx:Style&#62;
    Box {
        verticalScrollBarStyleName: myVScrollBarStyleName;
        horizontalScrollBarStyleName: myHScrollBarStyleName;
    }

    .myVScrollBarStyleName {
        downArrowSkin: ClassReference(null);
        upArrowSkin: ClassReference(null);
    }

    .myHScrollBarStyleName {
        downArrowSkin: ClassReference(null);
        upArrowSkin: ClassReference(null);
    }
&#60;/mx:Style&#62;
&lt;/pre&gt;

If I get time later today I'll try and turn that into a new entry.

Thanks,
Peter</description>
		<content:encoded><![CDATA[<p>Eric,</p>
<p>Good question! Instead of using <code>Embed()</code> to embed an image try using <code>ClassReference(null)</code>:</p>
<pre class="code">
&lt;mx:Style&gt;
    Box {
        verticalScrollBarStyleName: myVScrollBarStyleName;
        horizontalScrollBarStyleName: myHScrollBarStyleName;
    }

    .myVScrollBarStyleName {
        downArrowSkin: ClassReference(null);
        upArrowSkin: ClassReference(null);
    }

    .myHScrollBarStyleName {
        downArrowSkin: ClassReference(null);
        upArrowSkin: ClassReference(null);
    }
&lt;/mx:Style&gt;
</pre>
<p>If I get time later today I&#8217;ll try and turn that into a new entry.</p>
<p>Thanks,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7054</link>
		<author>Eric</author>
		<pubDate>Mon, 18 Feb 2008 11:53:16 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-7054</guid>
		<description>Good stuff peterd, i was wondering if there is a way to remove the arrow buttons completely, i just want a nice clean scroll bar with no up/down buttons. Thanks

Eric</description>
		<content:encoded><![CDATA[<p>Good stuff peterd, i was wondering if there is a way to remove the arrow buttons completely, i just want a nice clean scroll bar with no up/down buttons. Thanks</p>
<p>Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-6969</link>
		<author>peterd</author>
		<pubDate>Thu, 14 Feb 2008 04:50:39 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-6969</guid>
		<description>Andy Matthews,

The Box class inherits from the Container class. Sorry, I should have used something a bit more clear in the &#60;mx:Style /&#62; block.

Peter</description>
		<content:encoded><![CDATA[<p>Andy Matthews,</p>
<p>The Box class inherits from the Container class. Sorry, I should have used something a bit more clear in the &lt;mx:Style /&gt; block.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Matthews</title>
		<link>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-6959</link>
		<author>Andy Matthews</author>
		<pubDate>Wed, 13 Feb 2008 17:36:16 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/02/10/changing-the-arrow-button-skins-on-a-flex-containers-scroll-bars/#comment-6959</guid>
		<description>I don't understand how the  knows that it should use the "Container" style. Can you elaborate please?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t understand how the  knows that it should use the &#8220;Container&#8221; style. Can you elaborate please?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
