<?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 on: SuperSexy Scrollbars with Degrafa</title> <atom:link href="http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/feed/" rel="self" type="application/rss+xml" /><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/</link> <description>Blog about Flex, AIR, Security, and other various topics</description> <lastBuildDate>Sat, 04 Feb 2012 01:17:44 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Andrew</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-54</link> <dc:creator>Andrew</dc:creator> <pubDate>Thu, 22 May 2008 20:27:15 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-54</guid> <description>Looks like the wordpress search-engine-friendly urls aren&#039;t friendly to my view-source link.  Here&#039;s the source:  http://www.flexjunk.com/examples/ScrollbarSkinning/srcview/</description> <content:encoded><![CDATA[<p>Looks like the wordpress search-engine-friendly urls aren&#8217;t friendly to my view-source link.  Here&#8217;s the source: <a
href="http://www.flexjunk.com/examples/ScrollbarSkinning/srcview/" rel="nofollow">http://www.flexjunk.com/examples/ScrollbarSkinning/srcview/</a></p> ]]></content:encoded> </item> <item><title>By: Chris Parker</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-32</link> <dc:creator>Chris Parker</dc:creator> <pubDate>Fri, 18 Apr 2008 21:55:07 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-32</guid> <description>Here&#039;s a hack to the whiteBox in the corner problem.. http://custardbelly.com/blog/?p=70</description> <content:encoded><![CDATA[<p>Here&#8217;s a hack to the whiteBox in the corner problem.. <a
href="http://custardbelly.com/blog/?p=70" rel="nofollow">http://custardbelly.com/blog/?p=70</a></p> ]]></content:encoded> </item> <item><title>By: Tom Nussbaumer</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-31</link> <dc:creator>Tom Nussbaumer</dc:creator> <pubDate>Thu, 17 Apr 2008 10:58:42 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-31</guid> <description>Just want to note that the viewsource url seems to be broken.</description> <content:encoded><![CDATA[<p>Just want to note that the viewsource url seems to be broken.</p> ]]></content:encoded> </item> <item><title>By: TicTacToe Using Degrafa</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-12</link> <dc:creator>TicTacToe Using Degrafa</dc:creator> <pubDate>Sat, 05 Apr 2008 01:38:08 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-12</guid> <description>[...] new examples every week that are using Degrafa in a variety of ways. From data visualization, to skinning, games and more. It really shows just how flexible Degrafa can [...]</description> <content:encoded><![CDATA[<p>[...] new examples every week that are using Degrafa in a variety of ways. From data visualization, to skinning, games and more. It really shows just how flexible Degrafa can [...]</p> ]]></content:encoded> </item> <item><title>By: BaRoN!</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-6</link> <dc:creator>BaRoN!</dc:creator> <pubDate>Fri, 21 Mar 2008 10:38:46 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-6</guid> <description>Hi there,
1st of all, the view source doesn&#039;t work for me, I got returned to the same page :-(.
If you still care about the whiteBox, you can either set its alpha to 0, or remove it from the rawChildren list.
addEventListener(Event.ADDED, whiteBoxCheck);
private function whiteBoxCheck(event:Event):void {
if (event.target.name == &quot;whiteBox&quot;) {
FlexShape(event.target).alpha = 0;
}
}
Or, you can:
private function removeWhiteBox(): void {
var wb: DisplayObject = rawChildren.getChildByName(&quot;whiteBox&quot;);
if (wb) {
wb.alpha = 0;
}
}
override public function validateDisplayList(): void {
super.validateDisplayList();
removeWhiteBox();
}
You may be interested in the following:
&lt;a href=&quot;http://www.mail-archive.com/flexcoders@yahoogroups.com/msg61451.html&quot; rel=&quot;nofollow&quot;&gt;This discussion on flexcoders list about the white box&lt;/a&gt; and &lt;a href=&quot;http://www.tommyb.com/2006/11/30/flex-using-custom-scrollbar-skins-youll-run-into-this-problem/&quot; rel=&quot;nofollow&quot;&gt;Tommy Baggett tutorial about creating a custom scrollbars&lt;/a&gt;</description> <content:encoded><![CDATA[<p>Hi there,</p><p>1st of all, the view source doesn&#8217;t work for me, I got returned to the same page <img
src='http://www.flexjunk.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> .</p><p>If you still care about the whiteBox, you can either set its alpha to 0, or remove it from the rawChildren list.</p><p>addEventListener(Event.ADDED, whiteBoxCheck);<br
/> private function whiteBoxCheck(event:Event):void {<br
/> if (event.target.name == &#8220;whiteBox&#8221;) {<br
/> FlexShape(event.target).alpha = 0;<br
/> }<br
/> }</p><p>Or, you can:</p><p> private function removeWhiteBox(): void {<br
/> var wb: DisplayObject = rawChildren.getChildByName(&#8220;whiteBox&#8221;);<br
/> if (wb) {<br
/> wb.alpha = 0;<br
/> }<br
/> }</p><p> override public function validateDisplayList(): void {<br
/> super.validateDisplayList();<br
/> removeWhiteBox();<br
/> }</p><p>You may be interested in the following:<br
/> <a
href="http://www.mail-archive.com/flexcoders@yahoogroups.com/msg61451.html" rel="nofollow">This discussion on flexcoders list about the white box</a> and <a
href="http://www.tommyb.com/2006/11/30/flex-using-custom-scrollbar-skins-youll-run-into-this-problem/" rel="nofollow">Tommy Baggett tutorial about creating a custom scrollbars</a></p> ]]></content:encoded> </item> <item><title>By: Tom</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-5</link> <dc:creator>Tom</dc:creator> <pubDate>Tue, 11 Mar 2008 09:30:32 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-5</guid> <description>Hi there,
just discovered your blog in the comments to doug mccunes speach at 360. ^^
Nice work with degrafa!
Regards, tom</description> <content:encoded><![CDATA[<p>Hi there,</p><p>just discovered your blog in the comments to doug mccunes speach at 360. ^^<br
/> Nice work with degrafa!</p><p>Regards, tom</p> ]]></content:encoded> </item> <item><title>By: Jason Hawryluk</title><link>http://www.flexjunk.com/2008/03/09/supersexy-scrollbars-with-degrafa/comment-page-1/#comment-4</link> <dc:creator>Jason Hawryluk</dc:creator> <pubDate>Mon, 10 Mar 2008 08:28:30 +0000</pubDate> <guid
isPermaLink="false">http://flexjunk.com/?p=8#comment-4</guid> <description>Sweet! Though the view source doesn’t seem to work. For some reason it&#039;s opening the post in a new window, at least when using IE. Looking good though.
- jason</description> <content:encoded><![CDATA[<p>Sweet! Though the view source doesn’t seem to work. For some reason it&#8217;s opening the post in a new window, at least when using IE. Looking good though.</p><p>- jason</p> ]]></content:encoded> </item> </channel> </rss>
