<?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: How to build a Flash Actionscript 3.0 Videoplayer</title>
	<atom:link href="http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/</link>
	<description>The Tech Labs</description>
	<lastBuildDate>Thu, 10 Jun 2010 13:11:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gys</title>
		<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/comment-page-4/#comment-23638</link>
		<dc:creator>Gys</dc:creator>
		<pubDate>Thu, 10 Jun 2010 13:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=86#comment-23638</guid>
		<description>SOLUTION for hiding Controls + dynamic txtfiled with time:

mcVideoControls.addEventListener(MouseEvent.MOUSE_OVER, showHideControls);
mcVideoControls.addEventListener(MouseEvent.MOUSE_OUT, showHideControls);

function showHideControls(e:MouseEvent):void {
if(e.type == MouseEvent.MOUSE_OVER)
{mcVideoControls.alpha = 1;
// hiding the textfield: no alpha allowed
mcVideoControls.lblTimeDuration.visible = true;}

else
{mcVideoControls.alpha = 0;
mcVideoControls.lblTimeDuration.visible = false;}
}</description>
		<content:encoded><![CDATA[<p>SOLUTION for hiding Controls + dynamic txtfiled with time:</p>
<p>mcVideoControls.addEventListener(MouseEvent.MOUSE_OVER, showHideControls);<br />
mcVideoControls.addEventListener(MouseEvent.MOUSE_OUT, showHideControls);</p>
<p>function showHideControls(e:MouseEvent):void {<br />
if(e.type == MouseEvent.MOUSE_OVER)<br />
{mcVideoControls.alpha = 1;<br />
// hiding the textfield: no alpha allowed<br />
mcVideoControls.lblTimeDuration.visible = true;}</p>
<p>else<br />
{mcVideoControls.alpha = 0;<br />
mcVideoControls.lblTimeDuration.visible = false;}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean Mellis</title>
		<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/comment-page-4/#comment-23322</link>
		<dc:creator>Dean Mellis</dc:creator>
		<pubDate>Sun, 06 Jun 2010 22:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=86#comment-23322</guid>
		<description>Thanks for the great tutorial. There aren&#039;t many out there that don&#039;t use components. I don&#039;t use those playback components since one of the main benefits of using Flash is customization. 

Just one tip though: When coding it&#039;s always best practice to avoid hard coding numbers. If this file is to be passed on to others or reused time and time again, those parameters for the scrubbers should not be hard coded numbers. They should be dynamic expressions based on the original and current positions of your video controls.</description>
		<content:encoded><![CDATA[<p>Thanks for the great tutorial. There aren&#8217;t many out there that don&#8217;t use components. I don&#8217;t use those playback components since one of the main benefits of using Flash is customization. </p>
<p>Just one tip though: When coding it&#8217;s always best practice to avoid hard coding numbers. If this file is to be passed on to others or reused time and time again, those parameters for the scrubbers should not be hard coded numbers. They should be dynamic expressions based on the original and current positions of your video controls.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/comment-page-4/#comment-21295</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 16 May 2010 05:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=86#comment-21295</guid>
		<description>Thank you so much for this.  This saved me so much research time.  I can&#039;t thank you enough!</description>
		<content:encoded><![CDATA[<p>Thank you so much for this.  This saved me so much research time.  I can&#8217;t thank you enough!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don9of11</title>
		<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/comment-page-4/#comment-21008</link>
		<dc:creator>Don9of11</dc:creator>
		<pubDate>Wed, 12 May 2010 15:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=86#comment-21008</guid>
		<description>I need to make the video player larger. When I do the controls get stretched out. Do I need to remake the controls to fit the video player?</description>
		<content:encoded><![CDATA[<p>I need to make the video player larger. When I do the controls get stretched out. Do I need to remake the controls to fit the video player?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Janis</title>
		<link>http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/comment-page-4/#comment-20875</link>
		<dc:creator>Janis</dc:creator>
		<pubDate>Mon, 10 May 2010 11:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=86#comment-20875</guid>
		<description>@ alfonse
i found a way to solve this problem. it is certainly not the best solution but it works :) :

just cut the movieclip with your progressBar out of the &quot;Videocontrols-Movieclip/Layer&quot; and past it into a new layer in your root directory. now you should have the Videocontrols Layer and the progressBar layer in your root directory.

greetings</description>
		<content:encoded><![CDATA[<p>@ alfonse<br />
i found a way to solve this problem. it is certainly not the best solution but it works <img src='http://www.thetechlabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  :</p>
<p>just cut the movieclip with your progressBar out of the &#8220;Videocontrols-Movieclip/Layer&#8221; and past it into a new layer in your root directory. now you should have the Videocontrols Layer and the progressBar layer in your root directory.</p>
<p>greetings</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.669 seconds -->
