<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Go4Flash</title>
	<link>http://blog.go4flash.com</link>
	<description>Adobe (Macromedia) Flash expertise and Flash related technologies</description>
	<pubDate>Fri, 30 Jul 2010 07:31:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>Comment on Object Oriented Programming in ActionScript 3.0 by Antonos</title>
		<link>http://blog.go4flash.com/articles/as3/as3-oop/#comment-3598</link>
		<dc:creator>Antonos</dc:creator>
		<pubDate>Tue, 11 May 2010 10:06:23 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as3/as3-oop/#comment-3598</guid>
		<description>yes, I published this article on actionscript.org and on my blog here also ;)</description>
		<content:encoded><![CDATA[<p>yes, I published this article on actionscript.org and on my blog here also <img src='http://blog.go4flash.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Oriented Programming in ActionScript 3.0 by vtorp</title>
		<link>http://blog.go4flash.com/articles/as3/as3-oop/#comment-3597</link>
		<dc:creator>vtorp</dc:creator>
		<pubDate>Tue, 11 May 2010 10:03:00 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as3/as3-oop/#comment-3597</guid>
		<description>isn't it a ripoff from actionscript.org?</description>
		<content:encoded><![CDATA[<p>isn&#8217;t it a ripoff from actionscript.org?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent Flex app click-through solution by songhuan in china</title>
		<link>http://blog.go4flash.com/articles/flex-articles/transparent-flex-app-click-through-solution/#comment-3533</link>
		<dc:creator>songhuan in china</dc:creator>
		<pubDate>Wed, 14 Apr 2010 10:10:53 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/flex-articles/transparent-flex-app-click-through-solution/#comment-3533</guid>
		<description>i try it ,but not work, do you know the solution?</description>
		<content:encoded><![CDATA[<p>i try it ,but not work, do you know the solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple ScrollBar by Antonos</title>
		<link>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3531</link>
		<dc:creator>Antonos</dc:creator>
		<pubDate>Tue, 13 Apr 2010 12:02:35 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3531</guid>
		<description>Max, you have to change McHeight and Chunks parameters for each content you are scrolling</description>
		<content:encoded><![CDATA[<p>Max, you have to change McHeight and Chunks parameters for each content you are scrolling</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple ScrollBar by Antonos</title>
		<link>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3530</link>
		<dc:creator>Antonos</dc:creator>
		<pubDate>Tue, 13 Apr 2010 11:59:38 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3530</guid>
		<description>hi guys, 
sorry for delay, was busy last weeks

Jun, for example you can use TweenLite for that
http://www.greensock.com/tweenlite/

code to implement:

import com.greensock.*;
//.......
scroll_c._parent.onScroll = function()
{
TweenLite.to(ref.content_mc, 1, {_y:ref.mask_mc._y - this.scroll_mc.getScrollPos()});
}


Angela, to put one more instance of scrollbar to stage you will have to add mask for each content and put different names, e.g. mask1_mc, mask2_mc etc.
than when you attach scroll set different names for each scroll
var scroll1_c = ref.attachMovie("ScrollBar","scroll1_mc",1,{_x:ref.mask1_mc._x+ref.mask1_mc._width-10,_y:ref.mask1_mc._y});
than onScroll event change position of corresponding content holders
scroll1_c._parent.onScroll = function(){		ref.content1_mc._y = ref.mask1_mc._y - this.scroll1_mc.getScrollPos();
}


Laura, you can make scrolling faster by increasing you frame rate (in this case scrolling will be smoother and faster but it will affect CPU) or you can play with PageSize,McHeight and Chunks parameters (but it will make scrolling coarser)</description>
		<content:encoded><![CDATA[<p>hi guys,<br />
sorry for delay, was busy last weeks</p>
<p>Jun, for example you can use TweenLite for that<br />
<a href="http://www.greensock.com/tweenlite/" rel="nofollow">http://www.greensock.com/tweenlite/</a></p>
<p>code to implement:</p>
<p>import com.greensock.*;<br />
//&#8230;&#8230;.<br />
scroll_c._parent.onScroll = function()<br />
{<br />
TweenLite.to(ref.content_mc, 1, {_y:ref.mask_mc._y - this.scroll_mc.getScrollPos()});<br />
}</p>
<p>Angela, to put one more instance of scrollbar to stage you will have to add mask for each content and put different names, e.g. mask1_mc, mask2_mc etc.<br />
than when you attach scroll set different names for each scroll<br />
var scroll1_c = ref.attachMovie(&#8221;ScrollBar&#8221;,&#8221;scroll1_mc&#8221;,1,{_x:ref.mask1_mc._x+ref.mask1_mc._width-10,_y:ref.mask1_mc._y});<br />
than onScroll event change position of corresponding content holders<br />
scroll1_c._parent.onScroll = function(){		ref.content1_mc._y = ref.mask1_mc._y - this.scroll1_mc.getScrollPos();<br />
}</p>
<p>Laura, you can make scrolling faster by increasing you frame rate (in this case scrolling will be smoother and faster but it will affect CPU) or you can play with PageSize,McHeight and Chunks parameters (but it will make scrolling coarser)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple ScrollBar by Laura</title>
		<link>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3522</link>
		<dc:creator>Laura</dc:creator>
		<pubDate>Wed, 07 Apr 2010 00:23:03 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3522</guid>
		<description>Hi, could you let me know how can I make the scrolling go "faster" when the arrows are clicked, I find it's too slow and I'm really no expert in code. I'd appreciate your help, thanks!!</description>
		<content:encoded><![CDATA[<p>Hi, could you let me know how can I make the scrolling go &#8220;faster&#8221; when the arrows are clicked, I find it&#8217;s too slow and I&#8217;m really no expert in code. I&#8217;d appreciate your help, thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple ScrollBar by Angela</title>
		<link>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3471</link>
		<dc:creator>Angela</dc:creator>
		<pubDate>Thu, 11 Mar 2010 17:00:32 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3471</guid>
		<description>What I have to do, if I want to repeat the same scroll in te same swf, but different content, what I have to change, I have benn trying that for weeks,
Please help, tks!!</description>
		<content:encoded><![CDATA[<p>What I have to do, if I want to repeat the same scroll in te same swf, but different content, what I have to change, I have benn trying that for weeks,<br />
Please help, tks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple ScrollBar by Jun</title>
		<link>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3469</link>
		<dc:creator>Jun</dc:creator>
		<pubDate>Wed, 10 Mar 2010 13:03:23 +0000</pubDate>
		<guid>http://blog.go4flash.com/articles/as2/scrollbar/#comment-3469</guid>
		<description>how about adding some easing when dragging the scroller? how to implement thid functionality?...

Thanks,</description>
		<content:encoded><![CDATA[<p>how about adding some easing when dragging the scroller? how to implement thid functionality?&#8230;</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionScript 3.0 Class Diagram by Antonos</title>
		<link>http://blog.go4flash.com/cheatsheets/as3cheatsheets/as3classdiagram/#comment-3466</link>
		<dc:creator>Antonos</dc:creator>
		<pubDate>Fri, 05 Mar 2010 23:10:47 +0000</pubDate>
		<guid>http://blog.go4flash.com/cheatsheets/as3cheatsheets/as3classdiagram/#comment-3466</guid>
		<description>link was broken, fixed</description>
		<content:encoded><![CDATA[<p>link was broken, fixed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionScript 3.0 Class Diagram by Sergey</title>
		<link>http://blog.go4flash.com/cheatsheets/as3cheatsheets/as3classdiagram/#comment-3464</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Thu, 04 Mar 2010 12:20:30 +0000</pubDate>
		<guid>http://blog.go4flash.com/cheatsheets/as3cheatsheets/as3classdiagram/#comment-3464</guid>
		<description>Why i can not download .pdf? Can you send me file to email?</description>
		<content:encoded><![CDATA[<p>Why i can not download .pdf? Can you send me file to email?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
