<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - flash - 9.0 - ActionScriptLangRefV3 - fl/video/FLVPlayback.html</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T07:14:43</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92544" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92255" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86632" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86288" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85942" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85612" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#83237" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#78106" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#75352" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#70424" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92544">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92544</link>
		<description>This is a known issue, and there is a work around.&lt;br&gt;&lt;br&gt;The implementation assumes that only one instance of FLVPlayback will have the fullScreenTakeOver set to true (it is true by default). No matter how full screen mode is entered, every FLVPlayback instance with fullScreenTakeOver set to true will try to take over the screen. If you have multiple instances on stage at once and do not want them to all take over the screen, then you need to have fullScreenTakeOver = false set on the rest of them.&lt;br&gt;&lt;br&gt;Given that you have multiple instances of FLVPlayback all over the place this may seem inconvenient, but it can be done. For example, you could add a mouseOver and mouseOut event listener on each component, and set fullScreenTakeOver = true/false on those events.</description>
		<dc:creator>madscribe</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2009-01-30T11:15:48</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92255">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#92255</link>
		<description>Hi All&lt;br /&gt;&lt;br /&gt;I am facing a weird issue while using FLVPlayback control. [Not sure whether its a bug]&lt;br /&gt;&lt;br /&gt;I have created a class which internally creates an instance of the FLVPlayback control and sets the skin to SkinOverPlayStopSeekFullVol.swf.&lt;br /&gt;&lt;br /&gt;In the main program I have created n instances for this class to load different flv files [just like any multi windowed application, with each window playing its own flv file]. &lt;br /&gt;&lt;br /&gt;Once I click FullScreen button the video loaded last always get in to full screen mode; irrespective of the FLVPlayback instance where I am clicking.&lt;br /&gt;&lt;br /&gt;I have checked with the &quot;activeVideoPlayerIndex&quot; but it didn't worked out as while creating VideoControl instance i create new objects of FLVPlayback&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* Package begins */&lt;br /&gt;package com&lt;br /&gt;{&lt;br /&gt;	/* IMPORTS */&lt;br /&gt;	import fl.video.FLVPlayback;&lt;br /&gt;	import flash.display.MovieClip;&lt;br /&gt;&lt;br /&gt;	&lt;br /&gt;	/*&lt;br /&gt;	 * Class Name: VideoControl&lt;br /&gt;	 * Author: Swapnil Joshi&lt;br /&gt;	 * Date: 21-Jan-2008&lt;br /&gt;	 * Significance: Used to play the video files.&lt;br /&gt;	 * Version: 1.0.0&lt;br /&gt;	 *&lt;br /&gt;	 */&lt;br /&gt;	&lt;br /&gt;	/* Class definition begins */&lt;br /&gt;	public class VideoControl extends MovieClip&lt;br /&gt;	{&lt;br /&gt;		/* VARIABLES - references to respective objects. */&lt;br /&gt;&lt;br /&gt;		public var flvPlayer:FLVPlayback = new FLVPlayback();&lt;br /&gt;&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;		public function VideoControl(filePath:String, videoTitle:String)&lt;br /&gt;		{&lt;br /&gt;			//Video layer settings&lt;br /&gt;			this.flvPlayer.width = 320.0;&lt;br /&gt;			this.flvPlayer.height = 240.0;&lt;br /&gt;	this.flvPlayer.source = filePath;&lt;br /&gt;			this.flvPlayer.autoPlay = false;&lt;br /&gt;			this.flvPlayer.opaqueBackground = true;&lt;br /&gt;			this.flvPlayer.skin = &quot;SkinOverPlayStopSeekFullVol.swf&quot;&lt;br /&gt;			this.flvPlayer.skinAutoHide = true;&lt;br /&gt;			this.flvPlayer.skinBackgroundColor = 0x666666;&lt;br /&gt;			this.flvPlayer.skinBackgroundAlpha = 1.0;&lt;br /&gt;			this.flvPlayer.fullScreenTakeOver = true;&lt;br /&gt;			this.flvPlayer.skinScaleMaximum = 1;&lt;br /&gt;			this.addChild(this.flvPlayer);&lt;br /&gt;		&lt;br /&gt;		}&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	}/* Class definition ends */&lt;br /&gt;}/* Package ends */</description>
		<dc:creator>SwapnilVJ</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2009-01-23T01:30:26</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86632">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86632</link>
		<description>There seems to be two solutions to this problem:&lt;br&gt;1. mute the volume before switching the active video player and then set it it back to the desired volume after the switch:&lt;br&gt;function next(evt:VideoEvent):void&lt;br&gt;{&lt;br&gt;foo.volume = 0;&lt;br&gt;foo.activeVideoPlayerIndex = 1;&lt;br&gt;foo.visibleVideoPlayerIndex = 1;&lt;br&gt;foo.volume = 1;&lt;br&gt;foo.play();&lt;br&gt;}&lt;br&gt;&lt;br&gt;2. Use getVideoPlayer() to get the video player instance:&lt;br&gt;&lt;br&gt;function next(evt:VideoEvent):void&lt;br&gt;{&lt;br&gt;foo.activeVideoPlayerIndex = 1;&lt;br&gt;foo.visibleVideoPlayerIndex = 1;&lt;br&gt;foo.getVideoPlayer(foo.activeVideoPlayerIndex).volume = 1;&lt;br&gt;foo.play();&lt;br&gt;}&lt;br&gt;&lt;br&gt;In both cases, you should save the old volume and reset it to the same value instead of just forcing it to &quot;1&quot;.</description>
		<dc:creator>Joe ... Ward</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2008-08-11T14:08:35</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86288">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#86288</link>
		<description>Would somebody please tell me why everytime i set the &lt;br /&gt;&lt;br /&gt;visibleVideoPlayerIndex property I get no sound.&lt;br /&gt;It's killing me and making me look bad at work!!!!!!!!!!&lt;br /&gt;&lt;br /&gt;[code]&lt;br /&gt;flvPlayer.load(introSource);&lt;br /&gt;flvPlayer.activeVideoPlayerIndex = 1;&lt;br /&gt;flvPlayer.load(introSource2);&lt;br /&gt;flvPlayer.activeVideoPlayerIndex = 0;&lt;br /&gt;&lt;br /&gt;flvPlayer.addEventListener(VideoEvent.COMPLETE, next);&lt;br /&gt;flvPlayer.play();&lt;br /&gt;&lt;br /&gt;function next(evt:VideoEvent):void&lt;br /&gt;{&lt;br /&gt;flvPlayer.activeVideoPlayerIndex = 1;&lt;br /&gt;flvPlayer.visibleVideoPlayerIndex = 1;&lt;br /&gt;flvPlayer.play();&lt;br /&gt;}&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;result:&lt;br /&gt;no sound on introSource2&lt;br /&gt;flvPlayer.volume = 1&lt;br /&gt;and&lt;br /&gt;flvPlayer.soundTransform.volume = 0;&lt;br /&gt;&lt;br /&gt;and you can't set flvPlayer.soundTransform.volume;&lt;br /&gt;&lt;br /&gt;is this a bug or am I doing somthing wrong?&lt;br /&gt;&lt;br /&gt;-Jason</description>
		<dc:creator>jsavagedesign</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-07-31T07:44:30</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85942">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85942</link>
		<description>An example using rtmp would be nice especially since it seems there are none out there using AS3 and FMS 3.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-07-21T09:34:39</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85612">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#85612</link>
		<description>This is the only class I've ever seen that (script-)loads externals realtive to the SWF, not the container. &lt;br /&gt;If your movie doesn't load, but you're looking right at it, and your SWF is in a subdir of the container - don't jump out the window, just prepend the src string with a &quot;../&quot; for each dir it needs to go up from the SWF to get to the container. &lt;br /&gt;Voila - it's all container-relative again, and your movie es bueno</description>
		<dc:creator>_Kev/in</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-07-10T05:01:47</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#83237">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#83237</link>
		<description>Got weird problem. When the stage is resized, the hitArea of FLVPlayback instance skin floats away. So i can't make the skin controls visible (with skinAutoHide = true).</description>
		<dc:creator>timteka</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-04-21T07:39:16</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#78106">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#78106</link>
		<description>skinScaleMaximum fails with Flex Builder 3 Beta 2.</description>
		<dc:creator>rinse</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-12-07T12:57:45</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#75352">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#75352</link>
		<description>In Actionscript 2.0 skins, you could define extra graphics to position along &lt;br /&gt;side the controls (like a logo, for instance) by naming the movie clips &lt;br /&gt;fg1_mc (forground) or bg1_mc (background). This doesn't seem to be &lt;br /&gt;working in Actionscript 3.0, is there a way to add other images to a skin &lt;br /&gt;besides the actual controls?</description>
		<dc:creator>alernon</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-10-21T13:42:43</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#70424">
		<title>flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#70424</link>
		<description>I want to use seekbar attach from video(Instance) and control manually .</description>
		<dc:creator>andesigner.com</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-07-20T05:00:17</dc:date>
	</item>
	</rdf:RDF>

