<?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: Free AS3 Scrollbar: Fullscreen and Resizable</title>
	<atom:link href="http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/</link>
	<description>A blog about Flash &#38; ActionScript 3 from a designer&#039;s perspective</description>
	<lastBuildDate>Thu, 10 May 2012 20:42:29 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: julifos</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5210</link>
		<dc:creator>julifos</dc:creator>
		<pubDate>Thu, 10 May 2012 20:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5210</guid>
		<description>Nice looking.

If you click the scrollbar then release outside of the movieclip, it&#039;s still active the next time the mc gets mouse focus.</description>
		<content:encoded><![CDATA[<p>Nice looking.</p>
<p>If you click the scrollbar then release outside of the movieclip, it&#8217;s still active the next time the mc gets mouse focus.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5182</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 13 Mar 2012 19:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5182</guid>
		<description>This was perfect for the prototype that I&#039;m putting together. 

The one thing that I had to  adjust though was that when you kill the scroll bar, the enterframe event listener doesn&#039;t get removed, causing the original scrollbar not to be garbage collected and moving the content around in non-ideal ways. Once that was added, it fixed my problem.

I added soem other removeEventListener calls too to be sure...

stage.removeEventListener(Event.MOUSE_LEAVE, stopScroll);
			stage.removeEventListener(MouseEvent.MOUSE_WHEEL, mouseWheelListener);
			stage.removeEventListener(Event.RESIZE, onStageResize);
			stage.removeEventListener(MouseEvent.MOUSE_UP, onUpListener);
			_grabber.removeEventListener(Event.ENTER_FRAME, scrollContent);
</description>
		<content:encoded><![CDATA[<p>This was perfect for the prototype that I&#8217;m putting together. </p>
<p>The one thing that I had to  adjust though was that when you kill the scroll bar, the enterframe event listener doesn&#8217;t get removed, causing the original scrollbar not to be garbage collected and moving the content around in non-ideal ways. Once that was added, it fixed my problem.</p>
<p>I added soem other removeEventListener calls too to be sure&#8230;</p>
<p>stage.removeEventListener(Event.MOUSE_LEAVE, stopScroll);<br />
			stage.removeEventListener(MouseEvent.MOUSE_WHEEL, mouseWheelListener);<br />
			stage.removeEventListener(Event.RESIZE, onStageResize);<br />
			stage.removeEventListener(MouseEvent.MOUSE_UP, onUpListener);<br />
			_grabber.removeEventListener(Event.ENTER_FRAME, scrollContent);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5135</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 29 Nov 2011 12:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5135</guid>
		<description>Hi Jay,

This is great work! Just what I was looking for. I&#039;ve managed to implement your scrollbar and it sort of works fine.. It&#039;s just that if I change the stage alignment from top left to top (for the purpose of centring the site) is screws with the positioning of the scrollbar. 

While I have a basic understanding of AS3, I&#039;m just not sure or seeing what it is that I would need to do to correct this. Would you, or anyone still checking the comments be able to suggest a fix?

Many thanks,

Dan</description>
		<content:encoded><![CDATA[<p>Hi Jay,</p>
<p>This is great work! Just what I was looking for. I&#8217;ve managed to implement your scrollbar and it sort of works fine.. It&#8217;s just that if I change the stage alignment from top left to top (for the purpose of centring the site) is screws with the positioning of the scrollbar. </p>
<p>While I have a basic understanding of AS3, I&#8217;m just not sure or seeing what it is that I would need to do to correct this. Would you, or anyone still checking the comments be able to suggest a fix?</p>
<p>Many thanks,</p>
<p>Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LJ</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5096</link>
		<dc:creator>LJ</dc:creator>
		<pubDate>Fri, 05 Aug 2011 20:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5096</guid>
		<description>Hey, I&#039;m an AS3 newbie but love your scroll bar. I&#039;ve seen some of your basic implementation comments but I&#039;m still struggling. Any chance of a step by step to implement it?</description>
		<content:encoded><![CDATA[<p>Hey, I&#8217;m an AS3 newbie but love your scroll bar. I&#8217;ve seen some of your basic implementation comments but I&#8217;m still struggling. Any chance of a step by step to implement it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ismail Cherri</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5087</link>
		<dc:creator>Ismail Cherri</dc:creator>
		<pubDate>Thu, 07 Jul 2011 09:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5087</guid>
		<description>If you are using this class with Gaia, this should make it work if you are using the SiteView as container!

In the indexPage.as find the following line, it should be in the initScrollBar() function:

Code:
//Adding scrollbar at the top
//Gaia.api.getDepthContainer(Gaia.PRELOADER).addChild(_sb);


and replace it with:

Code:
//Adding scrollbar at the top
stage.addChild(_sb);



This should separate the ScrollBar from the SiteView without messing with the depth of different Gaia containers. 
I hope this works for you...</description>
		<content:encoded><![CDATA[<p>If you are using this class with Gaia, this should make it work if you are using the SiteView as container!</p>
<p>In the indexPage.as find the following line, it should be in the initScrollBar() function:</p>
<p>Code:<br />
//Adding scrollbar at the top<br />
//Gaia.api.getDepthContainer(Gaia.PRELOADER).addChild(_sb);</p>
<p>and replace it with:</p>
<p>Code:<br />
//Adding scrollbar at the top<br />
stage.addChild(_sb);</p>
<p>This should separate the ScrollBar from the SiteView without messing with the depth of different Gaia containers.<br />
I hope this works for you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thedark_master</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5076</link>
		<dc:creator>thedark_master</dc:creator>
		<pubDate>Tue, 31 May 2011 15:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5076</guid>
		<description>great code!  However, I wanted to take it a step further.  What would be the best way to make it resize according to a movie clip?  So basically I have a full flash website and somewhere in there I will have a set size movieclip that will contain the text.</description>
		<content:encoded><![CDATA[<p>great code!  However, I wanted to take it a step further.  What would be the best way to make it resize according to a movie clip?  So basically I have a full flash website and somewhere in there I will have a set size movieclip that will contain the text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michalis</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5075</link>
		<dc:creator>michalis</dc:creator>
		<pubDate>Thu, 26 May 2011 12:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5075</guid>
		<description>how do i get this to work, do i need to import the swf or fla to the project i am working on? please guys i need some help, i am very new to flash, but i like what i see 

thanks</description>
		<content:encoded><![CDATA[<p>how do i get this to work, do i need to import the swf or fla to the project i am working on? please guys i need some help, i am very new to flash, but i like what i see </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kl1m4xx</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5070</link>
		<dc:creator>kl1m4xx</dc:creator>
		<pubDate>Tue, 10 May 2011 17:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5070</guid>
		<description>THATS NOT FREE!!!!!!!!</description>
		<content:encoded><![CDATA[<p>THATS NOT FREE!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajayi Oluwaseun Emmanuel</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5053</link>
		<dc:creator>Ajayi Oluwaseun Emmanuel</dc:creator>
		<pubDate>Tue, 15 Feb 2011 00:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5053</guid>
		<description>@zack, u must import the full path of use the wildcard in the folder where the classes actually reside.

why cant i get this to work with my project?</description>
		<content:encoded><![CDATA[<p>@zack, u must import the full path of use the wildcard in the folder where the classes actually reside.</p>
<p>why cant i get this to work with my project?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zack</title>
		<link>http://www.warmforestflash.com/blog/2009/04/free-as3-scrollbar-fullscreen-and-resizable/comment-page-3/#comment-5038</link>
		<dc:creator>Zack</dc:creator>
		<pubDate>Fri, 21 Jan 2011 20:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.warmforestflash.com/blog/?p=246#comment-5038</guid>
		<description>I&#039;m not sure why this isn&#039;t working for me, I dropped the classes folder into the same folder that my FLA file is in.

I imported the classes folder with: 
import classes.*

I&#039;m calling it as:
var _scrollBar = new FullScreenScrollBar(portfolioPieces, 0x222222, 0xff4400, 0x05b59a, 0xffffff, 15, 15, 4, true)
addChild(_scrollBar)

I keep getting an error message that say &quot;Call to a possibly undefined method FullScreenScrollBar.&quot;

What am I missing?</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure why this isn&#8217;t working for me, I dropped the classes folder into the same folder that my FLA file is in.</p>
<p>I imported the classes folder with:<br />
import classes.*</p>
<p>I&#8217;m calling it as:<br />
var _scrollBar = new FullScreenScrollBar(portfolioPieces, 0&#215;222222, 0xff4400, 0x05b59a, 0xffffff, 15, 15, 4, true)<br />
addChild(_scrollBar)</p>
<p>I keep getting an error message that say &#8220;Call to a possibly undefined method FullScreenScrollBar.&#8221;</p>
<p>What am I missing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

