Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








FLVPlayback Captioning


Greetings,

Have you used the FL8 FLVPlayback Captioning SKINs
for Captionate?

Do you know how to use the embed font feature?

I have the player under a mask and the text is showing up invisible. It is
indeed coming to the player,
but it's invisible.

HEEELLLPP! What about the CSS option. Is there a way?

Regards,
Toe Cutter




Adobe > ActionScript 1 and 2
Posted on: 10/09/2008 11:02:45 AM


View Complete Forum Thread with Replies

Sponsored Links:

FLVPlayback Captioning Button - Someone HAS TO KNOW The Answer To This...
Hey all,

Someone HAS TO KNOW how to connect a customized captionButton. Here's what I did. From the Components panel, under Video, I dragged by PlayPauseButton, MuteButton, SeekBar, and also the CaptionButton. I also have an FLVPlayback and a FLVPlaybackCaptioning components on stage to. I go ahead and render this bad boy out and, all is good. I even got my Captions working the way I want to...

It's come time to move all my video player components into 1 movieclip, "navbar" so I can fade it in and out. I go ahead and reconnect all my buttons like so:


Code:
theVideo.playButton = navBar.playPause_mc.play_mc;
theVideo.pauseButton = navBar.playPause_mc.pause_mc;
theVideo.playPauseButton = navBar.playPause_mc;
theVideo.muteButton = navBar.mute_mc;
theVideo.volumeBar = navBar.volbar;
theVideo.captionButton = navBar.caption_mc;
theVideo.seekBar = navBar.mySeekBar;
theVideo.bufferingBar = navBar.bufbar;


I render it out and get an error of "1119: Access of possibly undefined property captionButton through a reference with static type fl.video:FLVPlayback.

When I comment out the captionButton code like so:


Code:
theVideo.playButton = navBar.playPause_mc.play_mc;
theVideo.pauseButton = navBar.playPause_mc.pause_mc;
theVideo.playPauseButton = navBar.playPause_mc;
theVideo.muteButton = navBar.mute_mc;
theVideo.volumeBar = navBar.volbar;
//theVideo.captionButton = navBar.caption_mc;
theVideo.seekBar = navBar.mySeekBar;
theVideo.bufferingBar = navBar.bufbar;


...all works, minus the captionButton. So, my question is:

What is the correct syntax for connecting the captionButton? I should probably add that this is my 2nd project in AS3 so, if it's something really simple, I truly appreciate the help.

Thanks in advance,
-K =]

View Replies !    View Related
FLVPlayback Captioning Hide Captions
I'm using the flvPlayback and Captioning component/skin for some videos. Works great, but I can't figure out how to have the captions off by default, and use the caption button to turn them on for users who want to see the caption buttons.

flvCaption.showCaptions=false;

--hides the captions, but also disables the captionButton in the skin, so there is no way to toggle showing and hiding the captions.

View Replies !    View Related
FLV Captioning
I need to implement closed captioning into my FLVs. I have successfully set up the FLVplayback component, and the FLVplaybackCaptioning component to work. That's not the issue. The issue is, once I have my swf, flv, and xml files (needed to successfully use CC in a FLV), I need to insert that .swf into my captivate project.

It appears to insert/import OK, but once I publish the project, the swf does not appear, and in fact the FLV icon sits on the slide rapidly blinking. Neither the video plays, nor can I even see the playback component/closed caption component (swf) that holds the FLV.

All paths are relative, so the only things I can think of that may be causing the issue are:

a)Captivate doesn't support CS3 FLVPlayback or FLVPlaybackCaptioning components

b)Since Captivate allows importing of FLV files directly, running the FLV through the component's swf is a problem

c)The hierarchy of files needed for the Closed Captioning FLV (xml, flv, swf), interfere with compiling the new Captivate .swf upon publishing

I've also been told that the FLV captioning component only works in Actionscript 3.0 which runs on Adobe Virtual Machine 2. Captivate publishes .swf files using Actionscript 2.0 which runs on Adobe Virtual Machine 1. Therefore, what I need to do will not work.

Any help is appreciated.

View Replies !    View Related
Video Captioning
Does anyone know of a tutorial or movie that I can get my hands on that captions video (captioning= runs the transcription of what is being said in the video in text format)?
I have the transcription in an external TXT right now but can import that into flash if needs be. But what I want it to do is run in a scrolling box under the video. So when the video plays the transcription runs under it like cretits from a movie would.
To put things in perspective the video is about an hour long so it has a long runtime.

Thanks for any wisdom in advance FLash Guru's

View Replies !    View Related
Closed Captioning
Guru's,

I am creating interactive pieces in flash with voice overs and closed captioning. However, one thing I have learned with this experience is that when created closed captioning I have to change the variable on each frame according to what the audio says.. So I have a blank frame with a text box called "ccbar". And the whole code on the blank keyframe is

_root.ccbar.cctext = "text of whatever is being said in the audio file";

My question is that I have to go through the entire FLA file and add these blank keyframes for each sentence that is said. Does anyone know how I could possibly create this dynamically and possibly get it to sync up with the audio file? Lets say we had a song, and u wanted the lyrics to be read to you while the song is playing at the same time. I know this seems as if its a hard concept a little. I am just trying to figure an easier/faster way to resolve this issue.

Thanks,
Andy

View Replies !    View Related
Closed Captioning
How can I get an FLV to use the skinOverAll.swf with closed captioning, but have the captions start turned off? They seem to default on.

If I set the showCaptions parameter to false, they not only don't show, but the CC button on the skin will not toggle them on or off.

Thanks


Code:
import fl.video.*;
import flash.display.Sprite;
import flash.text.TextField;

// VIDEO CONTROLS
var flvDisplay = new FLVPlayback();
flvDisplay.scaleMode = VideoScaleMode.MAINTAIN_ASPECT_RATIO;
flvDisplay.x = -250;
flvDisplay.y = -270;
flvDisplay.setSize(500, 375);
flvDisplay.skinBackgroundColor = 0x999999;
flvDisplay.skinBackgroundAlpha = 0.75;
flvDisplay.skin = "SkinOverAll.swf"
flvDisplay.source = "content/video/video01.flv";
flvDisplay.autoPlay = true;
flvDisplay.skinAutoHide = true;
addChild(flvDisplay);

// VIDEO CAPTIONING CONTROLS
var captioning = new FLVPlaybackCaptioning();
captioning.flvPlayback = flvDisplay;
captioning.source = "content/video/captions01.xml";
captioning.autoLayout = true;
// captioning.showCaptions = false;
addChild(captioning);

captioning.addEventListener("captionChange",onCaptionChange);
function onCaptionChange(e:*):void {
// trace("caption change");
var tf:* = e.target.captionTarget;
var flvDisplay:FLVPlayback = e.target.flvPlayback;
};

View Replies !    View Related
AS 3 Captioning Component Help
Is there a way to implement the FLVCaptioning component into a custom FLV player? I have a player that I have written, but I can't figure out how to get the captioning component to work unless I use a stock player. If I drag the component onto the timeline I get:

ReferenceError: Error #1065: Variable FLVPlaybackCaptioning is not defined.

ReferenceError: Error #1065: Variable MainTimeline is not defined.

I set the flvPlayBack name to testClip.flv and the captionTargetName to captionBox (a dynamic text box on the stage)

Any ideas on how to make this work?

Thanks!

View Replies !    View Related
Captioning Problem
I have a presentation in flash which i am trying to run the captioning is done using HIcaption, but i can't seem to make it work when i post it online just the black caption bar appears and nothing happens, even though it works perfectly on the local machine. i don't know what exactly is wrong so i will leave that to the Guru's here, please help me
here is the link
http://www.hofstrateach.org/test/chap01.html

View Replies !    View Related
Having Trouble With Captioning
I am currently going through a tutorial on creating captioning using cue points located here. I have my layout set up and my xml setup and everything, but there seems to be a problem with a line of code (in bold):


Code:
var captions:Array;

var captionsXML:XML = new XML();
captionsXML.ignoreWhite = true;

captionsXML.onLoad = function():Void {
captions = this.firstChild.childNodes;

for(var i:Number = 0; i < captions.length; i++) {
myVid.addASCuePoint(Number(captions[i].attributes.start, captions[i].firstChild.nodeValue);
};

};

captionsXML.load("cueData_0101.xml");

myVid.addEventListener("cuePoint", onCuePoint);

function onCuePoint(evntObj:Object):Void {
txtCaption.text = evntObj.info.name;
};
There error I get from the de-bugging window is:


Quote:




**Error** Scene=Scene 1, layer=Layer 13, frame=1:Line 10: Wrong number of parameters; Number requires exactly 1.

myVid.addASCuePoint(Number(captions[i].attributes.start, captions[i].firstChild.nodeValue);




This of course prevents the captioning from working, can anyone help me?

View Replies !    View Related
Closed Captioning
Guru's,

I am creating interactive pieces in flash with voice overs and closed captioning. However, one thing I have learned with this experience is that when created closed captioning I have to change the variable on each frame according to what the audio says.. So I have a blank frame with a text box called "ccbar". And the whole code on the blank keyframe is

_root.ccbar.cctext = "text of whatever is being said in the audio file";

My question is that I have to go through the entire FLA file and add these blank keyframes for each sentence that is said. Does anyone know how I could possibly create this dynamically and possibly get it to sync up with the audio file? Lets say we had a song, and u wanted the lyrics to be read to you while the song is playing at the same time. I know this seems as if its a hard concept a little. I am just trying to figure an easier/faster way to resolve this issue.

Thanks,
Andy

View Replies !    View Related
Close Captioning
Hi,

I work in State Government and I'm in the process of putting together a seminar video. I've purchased the Proxus FLV PLayer Component online specifically because of the visual media list offered. However, I've found that this player doesn't have any caption control mechanism build into it.

Could I build ontop of this player (using layers i assume) and if so, does anyone have any suggestion regarding the XML and Action Script code to use?

Your help would be greatly appreciated.

Thank you in advance.






























Edited: 12/27/2006 at 10:18:18 AM by OlejnikP

View Replies !    View Related
Closed Captioning
I'm trying to create closed captioning for an FLV playing in my Flash file. I've looked at tutorials on Lynda.com and used that exact code but I get errors - I've checked a bunch of times to make sure I've typed it in correctly and I think I have. Can you see why I'd get errors with this code (errors and code pasted below) and can anyone suggest how I should do this? I plan to create ActionScript cuepoints and when it hits the cuepoints, display text for that section of video.


import fl.VideoEvent
import fl.video.MetadataEvent;

vid.addEventListener(MetaDataEvent.CUE_POINT, cueText);

function cueText(e:MetadataEvent();void{
var cuePointName = e.info.name;
if(cuePointName=="one"){
info.text = "one is the lonliest number";
}else if(cuePointName=="two"){
info.text = "two can be as sad as one";
}
}

ERRORS:
The class or interface 'fl.video.MetadataEvent' could not be loaded.





























Edited: 07/04/2008 at 06:37:37 AM by yevri

View Replies !    View Related
Live Captioning ?
hi

we have done live webcasting in real and windows , using a line 21 box..

can live captioning be done with flash, I know it can be done for VOD


please advise 2

View Replies !    View Related
Is Closed Captioning Possible In Flash
Is it possible to create closed captioning for flash? I am wanting to add text that will follow along with the voice over that I am placing into a flash movie. If anyone could lend some insight I would greatly appreciate it.

Thank You

dc543

View Replies !    View Related
Closed Captioning Position
I have a flv closed captioning component on my stage, and no matter where I place it, it always appears at the very bottom when I play the movie. I even tried changing the position of it w/ code, but it still stays in the same place.

Any help would be appreciated!

View Replies !    View Related
Flash And Closed-Captioning
How is the closed-captioning acheived on the sample success story about Sony's use of Flash?

Thanks.

View Replies !    View Related
FLV Xml-based Captioning (Subtitles)
Hi everyone!

I am following a tutorial from actionscript.org about creating xml-based subtitles in flash through actionscript. Although I have followed the instructions and explanations closely, I can't seem to make the thing work. Take note, there are no error notifications when I test the movie - I have all the classes required as well as a sample FLV. Can someone please point out what's wrong with this script?

This is basically the cached link of the tutorial I followed. Actionscript.org appears to be inaccessible at the moment.FLV Xml-based Captioning









Attach Code

var theContent:XModel = new XModel();
var listener = new Object();
theContent.addEventListener("onModelledObject", listener);
theContent.load("xml/cuepoints.xml");

var arr_cue_points:Array = new Array();
listener.onModelledObject = function(eventObject:Object):Void {
var cuepoints:Object = eventObject.modelledObject;
for(kk=0; kk<cuepoints.cuepoint.length; kk++){
var cueObj:Object = new Object();
cueObj.cueTitle = cuepoints.cuepoint[kk].cuename[0].text;
cueObj.cueTime = cuepoints.cuepoint[kk].cuetime[0].text;
cueObj.cueText = cuepoints.cuepoint[kk].subtitle[0].text;

arr_cue_points[cueObj.cueTitle] = cueObj;
createCuepoint(cueObj.cueTitle, cueObj.cueTime);
}
}

function createCuepoint(cTitle:String, cTime:String):Void{
var cuePt:Object = new Object(); //create cue point object
cuePt.time = Number(cTime);
cuePt.name = cTitle;
cuePt.type = "actionscript";
video1.addASCuePoint(cuePt); //add AS cue point
}

//populate cuepoints...
var lastCue:Number;
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
var str_name = eventObject.info.name.toString();
_root.txt_output.text = arr_cue_points[str_name].cueText;
}

View Replies !    View Related
FLV Captioning Problem With ShowCaptions
Greetings,

I am working on a simple FLV player for my website with closed captioning using Flash CS3 and ActionScript 3. I am using the FLVPlayback and FLVPlaybackCaptioning which work really great. Now, I wanted to use one player for all my videos, I use javascript functions to pass in the movie parameters (using ExternalInterface). However, I have a problem with setting the FLVPlaybackCaptioning.showCaptions parameter.

Basically, if I set this parameter to "false" then my Closed Captioning button stops working (hovering doesn't change its color and clicking on it doesn't do anything). I use a modified SkinUnderAll skin file for my skin.

Any help on why this is happening and how I can fix that is greatly appreciated!

EDIT: Also, my fullscreen button does nothing. Do I need to do anything special to enable it?





























Edited: 09/09/2007 at 09:26:55 PM by Koobazaur

View Replies !    View Related
Captioning Strangness When Changing Source
I have a tileList component with the following function that loads a new flv into a player when an item is selected. It also loads up a new caption xml file.

I've noticed, if video 1 plays with a caption on screen and I load video 2, it clears the caption text field as in this function but then as soon as video 2 is loaded, the original caption of video 1 displays again until it's duration is over or a new title is played in the video 2 caption xml.

If the caption component gets a new source, why does it persist on playing the old stuff? How can I stop that? Apparently the .text=""; didn't work.



Code:
function changeImage (e:Event):void
{
var myTarget:Object = e.target.selectedItem;
myCaptions.text = "";
flvDisplay.source = myTarget.video;
captioning.source = myTarget.captions;
}

View Replies !    View Related
Playing Multiple FLV Files With Captioning
Thanks for reading. So I ran across this Live Doc talking about playing multiple FLV files with captioning, but I'm a bit confused. Here's what I think I understand:

1) I only need to reference one FLVPlayback instance, but multiple FLVPlaybackCaptioning Instances for this method.

2) I'm supposed to set two variables that I don't see listed in any other documentation, "captionURL" and "videoPlayerIndex". Am I supposed to create and initialize these variables myself, or did Adobe do it for me?

Any tips? Anybody?

View Replies !    View Related
[FMX04] Provide Captioning For Movies
Hi

Can anyone point me to a tutorial for providing closed captioning for Flash movies.

Also, if possible, how to do closed captioning for multiple languages.

thanks

View Replies !    View Related
Captioning And Numbers For Photo Gallery
I would like to add in caption text and photo number indicator to this tutorial:

http://www.kirupa.com/developer/mx/photogallery.htm

1. caption for each photo:
I made text file named "animation.txt" with "&image1= this is pea****, &image2=this is elephant, &image3..............." and I put a dynamic text field with instance name of "caption".

I put this on top of all the code:
"LoadVariablesNum("animation.txt", 0);"
then I put right under "LoadMovie(this.pathtoPics + this.pArray.........":
"caption.text=eval(this.pArray[0]);"

The text field shows nothing. what is the correct code to make caption.text display the right text for its corespondent photo? I tried "&image1.jpg= this is pea****...." in text file and it did not work, either.

2. photo number indicator:
for each photo displayed, it will show : 1 of 10, 2 of 10, 3 of 10......
I have 2 text fields with instance names of "currentNum" and "totalNum". Then at the very end of all the code I put:
"currentNum.text=this.pIndex;
totalNum.text=this.pArray.length;"

Well, I got totalNum display the correct number, but the currentNum always stay at "1", no matter how photo has been changed. I guess I missed something, but I could not figure it out. (note: the tutorial file start with image0, for this purpose I want to start with image1, so I changed "this.pIndex=0" to "this.pIndex=1").

Thanks in advance.

View Replies !    View Related
Flash Streaming Video With Close Captioning
Hello,

I am trying to create streaming video using flash. I've already created the video and encoded as a FLV file.

Two questions:
1. I am currently hosting my streaming video on Playstream.com. How do I incorporate this video such that when a user views the content he/she will see a buffer bar loading as the video plays? A good example is on YouTube.com.

2. I've aready created my close caption file and have it in xml format. How do I sync my close captioned file with the flash video?

Thanks in advance.

mdawg

View Replies !    View Related
Setting Up Multiple Closed Captioning Videos In One Player
Hello,

I am trying to create an accessible multi-video player, and am using the FLVPlaybackCaptioning component. I am pulling my video files and my DFXP Timed Text files from an XML file. My code is attached.

Here are the requirements I'm facing, in no particular order. If anyone has any words of wisdom, I'm all ears!:

1) The player needs to have keyboard support. I think this means I can't use the default skins Adobe ships, as they aren't keyboard accessible.

2) I need captions to be turned off by default; In my current file, captions are turned off for my first movie; however once a user selects a new movie (from a list) captions turn on at default. I'm scratching my head about that one.

3) The controls for the video also need alt text for when a user hovers over. For instance, when a user hovers over the "play" arrow button, the word "Play" would appear.

Any help would be much appreciated. Thanks!









Attach Code

import fl.video.*;
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.xml.*;
import fl.controls.*;
import fl.accessibility.*;

var xml:XML;
var movieSource:String = new String;
var currentIndex:uint = new uint;


var moviePlayer:FLVPlayback = new FLVPlayback;
var movieCaption:FLVPlaybackCaptioning = new FLVPlaybackCaptioning;

var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, onLoaded);


function onLoaded(e:Event):void
{
xml = new XML(e.target.data);
var il:XMLList = xml.videos.vid;
for(var i:uint=0; i<il.length(); i++)
{
videoList.addItem({data:il.vidurl.text()[i], captions:il.captions.text()[i], label:il.desc.text()[i]});
}
videoList.selectedIndex = currentIndex;

movieSource = videoList.getItemAt(currentIndex).data;
moviePlayer.height = 512;
moviePlayer.width = 640;
moviePlayer.x = 10;
moviePlayer.y = 10;
moviePlayer.align = "center";
moviePlayer.autoPlay = false;
moviePlayer.scaleMode = "exactFit";
moviePlayer.accessibilityProperties
moviePlayer.skinBackgroundColor = 0x332c2c;
moviePlayer.source = movieSource;
moviePlayer.volume = 1;
playPause.target = moviePlayer;
playPause.addEventListener(MouseEvent.CLICK, playControl);
function playControl(e:MouseEvent):void
{
moviePlayer.play();
}
addChild(moviePlayer);

movieCaption.x = 10;
movieCaption.y = 570;
movieCaption.source = videoList.getItemAt(currentIndex).captions;
addChild(movieCaption);


videoList.addEventListener(Event.CHANGE, playVid);


function playVid(e:Event):void
{
movieSource = e.target.selectedItem.data;
moviePlayer.source = movieSource;
movieCaption.source = e.target.selectedItem.captions;
movieCaption.showCaptions = true;
movieCaption.showCaptions = false;
movieCaption.showCaptions = true;
moviePlayer.play();
}
}

loader.load(new URLRequest("portalVideosTests.xml"));

View Replies !    View Related
FLVPlayback Changing Another FLVPlayback
Hi,

I have a movieclip with an FLVPlayback component and a second movieclip on it. In that second movie clip, there's another FLVPlayback component. I was wondering if there was any actionscript I could use in the second movieclip to change the contentPath of the first FLVPlayback component upon the completion of the second FLVPlayback component.

This is the code I tried, but didn't work:

var listenerObject:Object = new Object();
listenerObject.complete = function(eventObject:Object):Void {
this._parent.flvp1.contentPath = "vid2.flv";
}
flvp2.addEventListener("complete", listenerObject);

(flvp1 is the first FLVPlayback component, flvp2 is the second, and vid2.flv is the file to be played in flvp1)

Also, I know that the listenerObject function is working because I tested a trace() command earlier, and it worked.

If anyone could point me in the right direction, I would appreciate it.

Thanks,
Brad

View Replies !    View Related
Video Captioning Causes Major Video Distortion
So,
This is a good one. I have a number of videos in an interactive program I'm doing. It's standalone, and the videos are vertically oriented. They'll play back on an LCD screen flipped on it's side and displaying 768x1366. I have it running in flash vertically so that when I play it back on the kiosk, I rotate the display 90 degrees in the display driver. I tried to program this so it ran on it's side, but the transitions and other effects I was doing were much choppier for some reason, so I decided to just go with rotating the display. At any rate, it was all going well until we realized that we needed captions on the screen. I did this in AS3, so I loaded up some XML files, set the caption target to my own text box, and when I went to run the program on the vertical screens, now all the video looks like static and is distorted. I removed my customer caption box, and when played in the default box, it also looks crazy. When I have the display driver set to standard, it looks fine. And, if I remove the caption component from the videos, the whole thing plays fine. I can actually see the videos start to play, and as soon as the captioning kicks in, they go nutty, and the program stays that way. I should say that the videos go crazy, but all the graphics in the program are distorted too, so it's not like the video is the only thing.
I don't really know how to start troubleshooting, and I imagine I am going to have to caption this stuff a different way, but I was wondering if anyone had any insight into how the captioning component works, and why it might cause this type of issue. I realize this is a fairly specialized thing I am describing, so there aren't a ton of people who would have experience with it exactly, but I am not really even sure why the component would cause this. Thanks folks.

- B

View Replies !    View Related
Captioning Video With Custom Video Class
I've written my own FLV player not using the FLVPlayback class and I'd like to be able to add captions to my videos.

Any suggestions on the best way to go about this?

Thanks.

View Replies !    View Related
[CS3] FLVplayback
My FLVplayback is different to the one in the adobe tutorial. Its got an ugly blue playbar! ... I have applied the latest updates i.e v.9.0.3 and its still not the same. Anyone know why?

View Replies !    View Related
[F8] Help On FLVPlayback
Hi all,

I have FLVPlayback component and contentPath is being taken from flashVar.
The player is set autoPaly false and until user click on play button the player embedded area is empty.
1) So i need how to cover that?
2) Is there a way to get a frame of video and display that?
3) What we have tried was to use anther player on top original player with out skin and assigning same content path to that and using seekPercent() to move it forward.

But the problem is the top player doesn't call seekPercent() until it buffer full video.

Once it buffered the tactic looks fine.

This is what we were trying without clear idea about FLVPlayback on flash,So this might be stupid.

So any practical idea is appriciated.

Thx!

View Replies !    View Related
Using FLVPlayback With FMS - How?
Hi,

I'm new to the FLVPlayback and somewhat of a newbie to Flash in general, but luckily I have managed to stream video from FMS using the MediaPlayback component. Unfortunately, I'm not having too much luck with FLVPlayback.

Macromedia says in order to use this component with FMS, contentPath must point to a SMIL file. Is this true? Should FLVPlayback work out-of-the-box without writing any Action Script (like MediaPlayback does)? If so, I would greatly appreciate some help with some very basic code to get this component to work.

Thanks.

View Replies !    View Related
Flvplayback A No-go?
I'm a newbie so be gentle, but I have an flvplayback 101 question. I'm using the video wizard to import my movie into an existing project. However, once I drag the flvplayback component to the stage and execute, neither the video nor the skin appear no matter how or where they are placed. Things work if I drag into an empty flash file. How do I begin to figure out what's wrong? Thank you!

View Replies !    View Related
FLVPlayback
Hello,

I am creating a flash movie using the FLVPlayback component that uses a skin. After exporting, the skin is visible in the swf playback but once imported into DW CS3 and tested in IE7 the skin is not visible. The swf skin file is included.

I never encountered this issue in Flash 8. The only difference I see in parameters is second from the bottom version_1_0_1.

Does anyone know how to get the skin visible in the browser?

Thanks.

View Replies !    View Related
Flvplayback And Xml
i am trying to play a " flv " file in the flvplayback component via an xml file...please help... i have searched high and low for tutorial's... please take a look and let me know what i need to do to fix it...

here is the action script in frame 1

import mx.video.*;
this.attachMovie("FLVPlayback", "my_FLVPlybk", 10, {_width:320,_height:240,_x:100,_y:100});
my_FLVPlybk.skin = "file:///C:/Program Files/Macromedia/Flash 8/en/Configuration/Skins/SteelExternalAll.swf"
my_FLVPlybk.contentPath = "rtmp://Documents and Settings/Angie/My Documents/video/videos.xml";

and here is the xml file it is supposed to pull the flv from

<smil>
<head>
<layout>
<root-layout width="320" height="240" />
</layout>
</head>
<body>
<video src="mikegundy.flv" />
</body>
</smil>

i dragged the component and placed it on the stage and then editted the " as "... right now i get a black screen with the player control's searching... finally no error's... it just isnt finding the file...

thanks
trey

View Replies !    View Related
FLVPlayBack
Hi there,
I am trying to control video in fullScreenTakeOver mode and having some issues. Robert, you've replied to several video questions and I hope you know this one too... :)

I have a simple FLVPlayBack component on the stage with its skin that has a fullscreen button, simple enough...
When it goes in fullscreen I want to be able to control the size of the video and a black background... I've tried this with several properties with no success. The closest I get, is with "player.scaleMode = VideoScaleMode.NO_SCALE;". This centers the video in its original size with black background... I want to be able to custom its size ... how would I do this? I am trying to avoid fullScreenTakeOver= false and having to remove all the elements on the stage except for the video, then relocating/resize it...

I hope it makes sense, thank-you

View Replies !    View Related
How To Use More Than One FLVPlayback?
I am creating a website in Flash. I have a page with 3 buttons on it to allow people to see 3 videos i have created. Each button moves the flash file to a separate frame. On each frame is a new FLVPlayback instance. Each one refers to a different externally referenced .flv file.

Only the first FLVPlayback video will play. If i go to the second frame, the FLVPlayback video will not play.

If i delete the first FLVPlayback frame, then the second frame will play its video.

How do i fix this?

View Replies !    View Related
FLVPlayback
The FLVPlayback for playing FLV is not working correctly for me, the video plays fine but the controls doesnt show. When playing in flash player localy it does, but on the webpage it doesnt appear, only the video. Any ideas?

View Replies !    View Related
FLVPlayback
How do you make the FLVPlayback component to repeat its content over and over again, until the user pushes the stop button?

thanks

View Replies !    View Related
FLVPlayback
I am building a site with multiple videos (FLV) for the user to choose from. I really like the ease of using the FLVPLayback component. My issue is using several instances of the component. How can I use one instance of the component and change the "contentPath" with actionscript? The instances are NOT on the same frame, I move from frame to frame to load in new movies. If doing this is not an isue with over loading the player then I am fine with using several instances.

Thanks for the help!!!
RUss

View Replies !    View Related
Flvplayback And As3
Hi all,
I have one flvplayback intance name is videom, i just want to konw if the user clicked play button.

Besause i want to hide a picture when the user clicked play button, hiding picture is easy, but how can i konw if the user clicked play?
I use cs3

View Replies !    View Related
FLVPlayback
I have a FLVPlayback component on my stage with the instancename "my_FLVPlybk"
And then I have my flv files "movie1.flv", "movie2.flv", and "movie3.flv"
How would I with actionscript randomly load one of these into my FLVPlayback when the movie starts?

View Replies !    View Related
Flvplayback
Hello,
I would like to stream flv files.
I read few posts and some documentation but unfortunately I could not get any positive result.
I have two basic but important questions.
1) what should I put in main.asc file
2) I s there anything to add after dragging the flvplayback component appart the rtmp address where the flv file is located.
I would very much appreciate a fully illustrated answer which can I apply successfully.
Thanks very much indeed.

View Replies !    View Related
FMS/FLVPlayback
FMS is installed. I have my .flv file under my directory for the application. Trying to use the FLVPlayback in Flash 8 to call it using rtmp://myserver/myapp/_definst_/myvideo.flv. Publish and it just brings up a blank screen. never plays. I know the .flv file works ok. I can see it connecting to the FMS so I know that is working ok. My application does use UC/LC combination and i read something that says it might be a problem. Any help??? I have the main.asc file from the Flash8 components sample (although that does say it is for the old 1.5 server).

View Replies !    View Related
FLVPlayback And MP3
From everything that I have read, FLVPlayback should be able to handle a streamed mp3 file using FMS. Whenever I try to put in my stream source address, rtmp://mydomain/myapp/myfile.mp3, I get an error that says

"Unable to make connection to server or to find the FLV on server"

I know the FMS is setup correctly because I can stream video FLV files without a problem.

Does anyone know how to connect to a streamed mp3 using FLVPlayback?

View Replies !    View Related
Using FLVPlayback
Hi,

Scenario

I have multiple video files, which on click should be played.

Problem

I'm using FLVPlayback component to play flv files. When user clicks on selected FLV videos it finds path and plays that video. During the time of video being palyed if, user selects another video it doesn't play.

Below is the code that I have when user click on the video list.
---------------------------------------------------------------------------------------------------------------------

if(flvPlayBack.state == PLAYING ||
flvPlayBack.state == BUFFERING)
{
flvPlayBack.stop();
flvPlayBack.source = uri;
flvPlayBack.load(flvPlayBack.source);
}

thanks for your help and time.

View Replies !    View Related
FLVPlayback AS3, Help Please
Is there a way to get the FLVPlayback to work correctly in fullscreen if the stage is set to fullscreen?

some gen. info about the file, and what I would like to happen:
The project I'm working on is 1600 x 1200. On the left side is a navigation menu with dropdowns and so forth. All of the sublinks bring up an 800x600 movie on the right side. So when a sublink is clicked I just want the movie to be shown at 800x600 on the right side. Then, if the user wants, they can click the FLVPlayback fullscreen button to make the video fullscreen. The videos should only be full screen after the button has been clicked.

What seems to be my problem is that I need the stage to be fullscreen, no windows or border or anything. Currently I have
stage.scaleMode = StageScaleMode.EXACT_FIT;
stage.displayState = StageDisplayState.FULL_SCREEN;

If I have the FLVPlayback property fullScreenTakeOver = true; the video loads fullscreen, bad. If I have fullScreenTakeOver = false, when the fullscreen btn is clicked the stage is taken out of fullscreen. The only way i can get close to getting what I'd like is by Not setting the stage to fullscreen and setting the takeOver property to true(Everything works fine, but the swf does not take up the whole screen, it is in window mode).

Thanks to all in advance!! If I need to explain it better, please let me know.

View Replies !    View Related
FLVPlayback
Hey!
Im working on a flash clip, that has to be able to contain atleast 5 Flvs. Well easy as h¤ll i thought

The problem:
First i tried to load each flv externally from another swf and the loop code in each of those, unfortunatly this didnt work...Looping each of the flvs. If i have the same flv in all "holders" they loop fine with this code:

on (complete) {
this.seekSeconds(0);
this.play();
}

Also tried using this:

on (complete) {
flvmov1.seekSeconds(0);
flvmov1.play();
flvmov2.seekSeconds(0);
flvmov2.play();
} and so on...

When i then add diffrent flvs to each container none will loop? What am i doing wrong here?

Thanks in advance!

View Replies !    View Related
FLVPlayback
Iam trying to create a Videogallery,
and since i've imported a couple of videoclips, im having three FLVplayback and im getting
this message

**Warning** The linkage identifier 'FLVPlayback' was already assigned to the symbol 'video/FLVfolder/FLVideo3', and cannot be assigned to the symbol 'video/FLVfolder/FLVideo2', since linkage identifiers must be unique.

the thing is that the page works just fine, but it's enoying!

View Replies !    View Related
FLVPlayback And Vod On FMS
My FLVPlayback component works well with vod folder on my FMS3 but my FLV files need to be in separate sub folders. So how can I work with vod an separate sub folders?

View Replies !    View Related
FlvPlayback Help
I am using the flvPlayback component from the flash library and when my video is done I want the playhead to advance to a new frame. I am trying to make sense out of the help file but I not having any luck. This is my code the play function is working but I am not sure how to integrate the the stopped function.

Any help appreciated.


Code:
stop();
//trace(video);
my_FLVPlybk.contentPath = "";
import mx.video.*;
my_FLVPlybk.autoPlay = false;
var listenerObject:Object = new Object();
listenerObject.ready = function(eventObject:Object):Void {
my_FLVPlybk.seekPercent(0);
my_FLVPlybk.play();

};
listenerObject.stateChange = function(eventObject:Object):Void {
if (eventObject.state == FLVPlayback.STOPPED) {
trace("State is "+FLVPlayback.STOPPED);
}
};
my_FLVPlybk.addEventListener("ready",listenerObject);
my_FLVPlybk.contentPath = "videos/"+video;

View Replies !    View Related
Flvplayback Actionscript, Please Help
Hello guys. I'm an intermediate in Actionscripting and so I want to ask you with a problem I am having.

I used an flvplayback component and used actionscript because the flv that it would be running would be dynamic. It went great. With it, I also used the skin feature in actionscript (I somewhat tweaked the existing skin). This seems to be the problem.

In IE it worked good. In mozilla, at first seemed ok. Everything is there and functioning. But when I refreshed it, the skin didn't seem to load up, so I was left with a playing flv which dont have any control. I thought at first, there must have been something that I tweaked in the skin. But when i tried to load up a fresh unedited skin, the same result ensued.

I have tried another method, using LoadVars: and it seemed to work again at first because when I refreshed it (in Mozilla) the skin was still there. But then it maybe there, but I cant move any of the controllers at all.

It seem in my program, that I must take out the skin variable out of the mySkin.onload = function()....but, when move it out, the result of the variable is undefined.

Please help me with this problem, I really really appreciate it. Here's the code:

import mx.video.*;
myPlayBack.contentPath = "videoViewer.flv";
myPlayBack.autoPlay = true;

mySkin = new LoadVars();
mySkin.load("mySkin.txt");

mySkin.onLoad = function () {
nowSkin = mySkin.nextSkin;
}

trace(nowSkin);
myPlayBack.skin = nowSkin;
myPlayBack.scaleX = 150;
myPlayBack.scaleY = 100;
myPlayBack.autoSize = true;
myPlayBack.autoRewind = true;



Thank you so much.

View Replies !    View Related
SOS....FLVPlayback Buffering %
hey guys
i neeed your help

- i use flvplayback component(flash 8) for streaming video from vitalstream.com
- interface as on productorials.com
- flvplayback and flvplayback custom ui components are skinned individually
- so question is - HOW CAN I SHOW BUFFERING %? - because flvplayback doesn`t have any property similar to NetStream.bufferLength property. It shows progress bar only.
------------
sorry for duplicating message
it is related to 3 forums, but i dont know how to make links in several forums to one message.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved