Flvplayback problem

Hi,
I have a problem with flvplayback fullscreen. When I press fullscreen it leaves a border up and on the left.
http://www.lalimita.ro/ro/Emisiuni/09_Mai_2009/?pic=1
can  anyone tell me why this is happening.
TX.

no .. look closely .. you will see that there is an extra border .. and the bottom roght part of the movie is not shown. Compare the image between small and fullscreen and you will see.

Similar Messages

  • FLVplayback problem, please!

    Hi everybody.
    I have a strange problem.
    So I made an application with dynamical button creation from
    a XML file. Some buttons open a movie clip containing a flv video
    (played by flvplayback). Other open swf files (loadmovie)
    The problem is: If a flv file has been played...I cannot
    click again on the buttons of the menus.....
    Swiss chocolate for the person who can help me!

    I'm not really adept with video matters, but I'll offer this as far as components/objects go.  If you have the FLVPlayback components lined up one after another along the timeline, then you might need to have empty space (blank keyframes) separating them.  Otherwise they may be suffering from an issue Flash has when you keep the same objects in adjacent frames... the latter can inherit the properties of the former.

  • FULLSCREEN + FLVPlayback problem

    Hello everyone,
    I've encountered a really frustrating problem recently when switching to StageDisplayState.FULL_SCREEN with a FLVPlayback component on the stage.
    My movie:
    bottom layer: a movie clip inside of which is a FLVPlayback component playing a flv movie
    upper layer: movie clip (logo), second mc (fullscreen button)
    Fullscreen button code:
    function doFullscreen(event:MouseEvent):void
        if(stage.displayState == StageDisplayState.FULL_SCREEN)
            stage.displayState = StageDisplayState.NORMAL;
        } else
            stage.displayState = StageDisplayState.FULL_SCREEN;
    bFullscreen.addEventListener(MouseEvent.CLICK, doFullscreen);
    Effect (BEFORE clicking the fullscreen button):
    everything is okay, the movie plays, logo and button are visible.
    Effect (AFTER clicking the fullscreen button):
    the only thing that is visible is the playing movie, but logo and fullscreen button disappear.
    What happens:
    The mc with the FLVPlayback comonent gets the highest child index and covers the logo and button. It is not the problem with aligning logo and button on the stage, as without the FLVPlayback component they are perfectly aligned. I also tried to manually switch the depth of the mc with the FLVComponent, unfortunatelly without any result.
    Do you have any idea how to solve this... bug?
    Thanks in advance.

    Okay, I solved it, sorry for disturbing. If anyone encountered the same problem, what you have to do is change the
    FLVPlayback.fullScreenTakeOver
    parameter to
    false

  • FLVPlayback  problem in Hosting ???

    i m using flvPlyback in player in two websites but in one of the sites its not  working properly, while in the other its working fine. it shows black screen  there

    Hi,
    I think  there could be a difference in the way both the websites have been deployed. Are you sure you can connect to FMS, maybe it is unable to connect and hence you won't see anything playing there.
    You could check if the connectivity to FMS is fine from the network where the website resides.
    Regards
    Mamata

  • Problem with FLVPlayback and component

    First of all I had problem with control component. they are not working so i just named that ppo and change the visibility to false to get rid of problem!
    ppo.visible=false;
    Question1
    (is there anyway to solve the problem? I mean to match the controlbar with screen of FLVplayer.)
    Question2
    what is the difference btw Flvplayback and FLVplayback 2.5 ?
    Question3
    whenever I click in btn1 it plays the flv.but sometimes it has no action so i click again and suddenly it plays the 001.flv twice and simultanously(even more than twice!)
    how can I solve my problem ?
    ___________________Frame 1______________
    import fl.video.*;
    import flash.events.MouseEvent;
    var myVideo:FLVPlayback = new FLVPlayback();
    control.visible=false;
    myVideo.x = 115;
    myVideo.y = -10;
    myVideo.skinBackgroundColor = 0x333333;
    myVideo.skinAutoHide=true;
    myVideo.skinFadeTime=300;
    addChild(myVideo);
    btn1.addEventListener(MouseEvent.CLICK , c1);
    function c1(e:MouseEvent):void
    myVideo.source = '001.flv';   
    Question 4 : I want to jump to another frame and start another flv but I want to stop previous flv. and again add myVideo2 to stage like frame 1 pattern. Is it true ? is there any better way to do this ?
    ---------------------------frame5-----------------------
    import fl.video.*;
    import flash.events.MouseEvent;
    var myVideo2:FLVPlayback = new FLVPlayback();
    control2.visible=false;
    myVideo2.x = 115;
    myVideo2.y = -10;
    myVideo2.skinBackgroundColor = 0x333333;
    myVideo2.skinAutoHide=true;
    myVideo2.skinFadeTime=300;
    addChild(myVideo2);
    btn2.addEventListener(MouseEvent.CLICK , c2);
    function c2(e:MouseEvent):void
    myVideo2.source = '002.flv';   
    thank you in advanced..

    Question1
    (is there anyway to solve the problem? I mean to match the controlbar with screen of FLVplayer.)
    what are you calling the '..controlbar' and what are you calling the '...control component'?
    Question2
    what is the difference btw Flvplayback and FLVplayback 2.5 ?
    2.5 has more features, http://blogs.adobe.com/ktowes/2009/05/announcing_dvrcast_and_flvplay.html
    Question3
    whenever I click in btn1 it plays the flv.but sometimes it has no action so i click again and suddenly it plays the 001.flv twice and simultanously(even more than twice!)
    how can I solve my problem ?
    remove the click listener so you can only click once.  then you may need to wait if testing online.
    ___________________Frame 1______________
    import fl.video.*;
    import flash.events.MouseEvent;
    var myVideo:FLVPlayback = new FLVPlayback();
    control.visible=false;
    myVideo.x = 115;
    myVideo.y = -10;
    myVideo.skinBackgroundColor = 0x333333;
    myVideo.skinAutoHide=true;
    myVideo.skinFadeTime=300;
    addChild(myVideo);
    btn1.addEventListener(MouseEvent.CLICK , c1);
    function c1(e:MouseEvent):void
    myVideo.source = '001.flv';   
    Question 4 : I want to jump to another frame and start another flv but I want to stop previous flv. and again add myVideo2 to stage like frame 1 pattern. Is it true ? is there any better way to do this ?
    ---------------------------frame5-----------------------
    import fl.video.*;
    import flash.events.MouseEvent;
    myVideo.stop();
    removeChild(myVideo);
    myVideo=null;
    var myVideo2:FLVPlayback = new FLVPlayback();
    control2.visible=false;
    myVideo2.x = 115;
    myVideo2.y = -10;
    myVideo2.skinBackgroundColor = 0x333333;
    myVideo2.skinAutoHide=true;
    myVideo2.skinFadeTime=300;
    addChild(myVideo2);
    btn2.addEventListener(MouseEvent.CLICK , c2);
    function c2(e:MouseEvent):void
    myVideo2.source = '002.flv';   

  • Problem loading video to FLVPlayback

    I'm doing the exercises included in the book "ActionScript 3.0 for Adobe Flash CS4 Professional Classroom in a Book", but I have run into a problem I cannot solve regarding the use of the source property of the FLVPlayback component.
    This is how the folders structure of the project is laid out:
    - Lesson11 >
    - Complete
    - Start >
    lesson11_start.fla
    - video >
    solution5.f4v
    I have an instance of FLVPlayback in the stage in file lesson11_start.fla
    Following instructions in the exercise, I have to assign the source property of this component the video file listed above by using the component inspector. So I have to click on the magnifying glass in the field which corresponds to the mentioned property, and browse to this video file.
    I can't do that. There is no browse dialog box, just one with a field in which you must enter the path to the video file.
    So what I do is to enter this relative path (I'm using Windows):
    "..\video\solution5.f4v"
    An error like this appears: "NetsStream.Play.StreamNotFound", saying that there is no video file there!
    I also try with absolute paths, with slashes instead of backslashes..., and I just get to get it working if I copy this video file in the same folder in which lesson11_start.fla is, and enter "solution5.f4v".
    Please somebody tell me the reason why paths don't work as expected.

    One of the reasons that it may not be working as you expect is that when flash is deployed to a webserver the relative path is mapped from the location of the html file it is mapped to and not from where the swf file resides. I don't think this applies to running locally on your machine. Did you try just entering video\yourvideoname.f4v ?

  • Modify Flvplayback skin with counter problem

    Hi
    I am trying to customise a FLVPlayback Skin that has a counter in it, (MinimaFlatCustomColorPlayBackSeekCounterVolMute.fla)
    If i modify any of the skins without a counter there is no problem however when i try to publish one of the skins with a counter i get these compiler errors:
    Warning: unable to load SWC FLVPlaybackAS2.swc
    1046 type was not found or was not compile time constant: NetstreamPlayOptions
    Any ideas?
    cheers
    Grant

    Hi,
    Someone had found a workaround
    "Just remove all from your source paths in the publish settings when  you look to ActionScript 3.0 setting for your Skin FLA ! ( as default  you can see here some path to video folder where is SWC files)"
    but the counter prolem remains as the counter does not work in this case ...
    may be someone has a better solution can reply ...
    Cheers

  • FLVPlayback component skinAutoHide problem

    Hi guys!
    I have a problem with FLVPlayback component's skinAutohide
    property which works poorly when FLVPlayback component is the same
    size as your stage. The skin only hides when I move my mouse very
    slowly outside the FLVPlayback component.
    Also making the FLVPlayback component smaller isn't an option
    so what more options are there left?
    Is there anyway to hide the skin by yourself?
    I allready tried the following code, but I think this is very
    unreliable (I get some errors when I move my mouse very quickly
    over and outside the FLVPlayback component):
    video.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler);
    video.addEventListener(MouseEvent.MOUSE_MOVE,
    mouseMoveHandler);
    function mouseLeaveHandler(event:Event):void {
    video.skin = "";
    function mouseMoveHandler(event:Event):void {
    video.skin = "SkinOverPlayStopSeekFullVol.swf";

    I am having the exact same problem. Thanks for info that this
    is caused by movie being the same size as the stage. I am also
    working on a solution and will let you know if I find one.

  • FLVplayback Seekbar problem

    Hello,
    I'm having issues with the seekbar handle for FLVplayback
    components. I have separate videos in separate movieclips and when
    I click to a new one the seekbar handle gets left from the previous
    one. I've noticed other people having the same problem but haven't
    found a solution as yet, can anyone help? Is there code to prevent
    this and if so would it go into the button, component or AS frame??
    Any help would be greatly appreciated.
    David

    That is my plan to use playheadupdate. I have been able to add a mouse click to the seekbar itself and can seek the the correct place in the flv on demand. My problem is that I am unable to display the handle rectangle.  I am also unable to add a mouse event to the SeekBarHandle class I have.

  • FLVplayback component problem

    my flash movie contains FLVPlayback component to play videos.
    In the begining of the movie( frame 1) I have a simple pre-loader.
    When I test my swf on a browser the pre-loader appear only after
    few second, not immediately. (my pre-loader start from 40%). I
    think the reason is that flash load the FLVPlayback component on
    the first frame although my component appears only on the second
    frame . Is there any work around this issue?
    Thanks

    I am having the exact same problem. Thanks for info that this
    is caused by movie being the same size as the stage. I am also
    working on a solution and will let you know if I find one.

  • FLVPlayback / Custom NCManager Problems

    I have been trying for days to write my own custom NCManager
    class that allows us to connect to a Limelight stream. We have to
    issue a NetCOnnect.call() that has the command "FCSubscribe" and
    the stream name. I've written a 100% custom player
    (www.god.tv/stream) (have to register!) but what I want to to
    resolve that player with the video-on-demand player
    (www.god.tv/god) into a single Flash project.
    I want to allow our Graphics guys (aka Flash developers) to
    be able to use the standard Adobe FLVPlayback components and skins
    and also be able to p lay back files, streaming content and
    Limelight content. To this end I thought that writing a custom
    NCManager class would be the way to go.
    I have 99.9% succeeded: my class gets the connectToURL(),
    connects to Limelight, subscribes and all is well but I am really
    really stuck now on how to tell the FLVPlayback component that it
    can start playing back now that the stream is connected.
    What really is stumping me is that my project is AS3 yet the
    FLVPlayback and VideoPlayer parts appear to be AS2 and I cannot
    call the rtmpStatusInfo() function on the VideoPlayer part to tell
    it that it is good to go.
    I am so close I can taste it: If I create a NetStream object
    and play() it, I can hear the content to I know that if I could
    only get the FLVPlayback / VideoPlayer dynamic duo to playback then
    the job would be done.
    I have attached the code, warts and all in the hope that
    either somebody has done this before or can tell me what I have
    misunderstood about the internal state-machine / FSM logistics that
    VideoPlayer et al implement.
    By reading the source code and my debugging statements I can
    see that I have maneuvered it towards the ultimate goal of playback
    but I don't know how to make that final step.
    Thanks in advance,
    Sean Charles.
    PS: I *know* that reconnect() is non-functional but if I
    uncomment the call all it does is go around the loop again; the
    real problem is I cannot tell the VideoPlayer that it can play (via
    rtmpStatusInfo) the data etc
    PPS: The meta-data related stuff *only* gets called if I
    uncomment the NetStream code; this was to check that I had a valid
    playback stream, which I do at that point.

    I was able to successfully make this work for our company's Adobe Flash video player using Flex Builder 3 running the Flex 3.3 SDK with the latest version of FLVPlayback 2.5.
    Here is the custom NCManager class I created:
    package com.companyname {
        use namespace flvplayback_internal;
        import fl.video.*;
        import flash.net.NetConnection;
        public class NCManagerLimelight extends NCManager {
            public function NCManagerLimelight() {
                super();
            override flvplayback_internal function onConnected(p_nc:NetConnection, p_bw:Number):void {
                super.onConnected(p_nc, p_bw);
                this.netConnection.client = com.companyname.ConnectClientLimelight;
                this.netConnection.call("FCSubscribe", null, this.streamName);
    As you can see, it references a custom ConnectClient class I extended, which follows:
    package com.companyname {
        use namespace flvplayback_internal;
        import fl.video.*;
        import flash.net.NetConnection;
        public class ConnectClientLimelight extends ConnectClient {
            public function ConnectClientLimelight(owner:NCManager, nc:NetConnection, connIndex:uint=0) {
                super(owner, nc);
            public function onFCSubscribe(info:Object):void {
                // do nothing
            public function onFCUnsubscribe(info:Object):void {
                // do nothing
    The above class really does nothing except prevent the debug errors it would throw if onFCSubscribe was not defined.  Finally, you put it all together by placing those two files (named NCManagerLimelight.as and ConnectClientLimelight.as respectively) in a folder structure that matches your package namespace off of the src folder for your Flex project.  In the above code, I used com.companyname, so you would want to place the two files in a folder located at src/com/companyname in your Flex project.
    Be sure to import the NCManagerLimelight class in your own source code by doing the following:
    import com.companyname.NCManagerLimelight;
    Then, right before you instantiate your FLVPlayback (where isLive is set to true for a live show) do the following to make your new NCManager class the default class for all video players:
    VideoPlayer.iNCManagerClass = NCManagerLimelight;
    Lastly, after you instantiate your FLVPlayback instance, you need to make sure it's isLive and autoPlay properties are both true.  For example:
    flvPlaybackInstance.autoPlay = true;
    flvPlaybackInstance.isLive = true;
    I hope this helps!
    Regards,
    Sean Smith

  • Preload .f4v FLVPlayBack Choppy problem

    Hi ,
    I'm new here. My first post !
    Just for info , I use Flex to build Action script project.
    So I preload some f4v movie, <1,50 mo , 720*405, between 4 and 10 s duration.
    No problem for the preload. But when 'bytesloaded=bytestotal' ,  I play the file, it looks like choppy. The video is not smooth at all.
    I try with flash player beta 10.1 , it's better but still choppy.
    Anyone get this problem ?  I try to play with the buffertime method of F4vPlayBack , it changes nothing.
    Samuel. Please Help !
    www.visualiser.fr

    Thanks for your answer. My f4v are no more than 0,5 Mbit/s. But I've made some test yesterday , on different os and browser.
    And the winner is  : Safari on a mac os 10.4, it's completly smooth !!  The other test was made on firefox both xp and macOS, and ie8(xp), it still choppy.
    I really don't understand what's happen. Flash is not supposed to display exactly the same thing what ever os or broswer you use ?
    Samuel

  • AS3 Problems with CuePoints using FLVPlayback in Projector executable

    I have a Flash CS3 project that uses the FLVPlayBack component to play 5 FLV files. Each of the files has between 1 and 15 navigation CuePoints embedded in the video (MOV files encoded using Flash Encoder).
    When I test the app using Ctrl-Enter from the IDE all works fine.
    When I test the published projector EXE on the hard disk all works fine.
    When I burn all the files to CD-ROM and start the projector EXE not all is fine.
    When I click on one of my buttons that will navigate to the desired cuepoint within the FLV, it acts like it is unable to find the cuepoint and thus goes to the end of the FLV file.
    This is very annoying and I can not find anything listed anywhere. I suspect it has something to do with buffering or something because the CD-ROM is slower than the hard drive.
    When playing the video all I am doing is:
    vidPlayer.stop();
    vidPlayer.source = "name of flv file";
    vidPlayer.play();
    When I navigate to the cuepoint I am using the following:
    vidPlayer.seekToNavCuePoint(cueName);
    Need help understanding why this is happening.  Thanks.

    I have an update.
    I re-published the Windows Projector executable, this time using the playWhenEnoughDownloaded method of the FLVPlayBack component.
    This has helped some. If I now choose one of the next 2 cuepoints in relation to where the video is currently playing, the seekToNavCuePoint command will find and play from that cuepoint appropriately.
    But if I choose a cuepoint too far from the point of where the video currently playing, it jumps to the end of the video and fires the COMPLETE event.
    Any additional help or suggestions would be helpful.
    Right now I am possibly thinking of breaking up the two larger videos into small videos and dealing with the transitioning in AS3.
    Thanks.

  • Problem loading flv into FLVPlayBack

    Hello All,
    I have set up a test site at
    http://www.sinifdizi.com/test.html.
    When the page loads there is an error. When I look at the
    browser activity viewer it says my video
    http://www.sinifdizi.com/videos/sinif-bol-01_01.flv
    not found. BUT!!!! If you click the first button 'bölüm
    1' then the 'indik' button under '1. BÖLÜM - TANITIM 01'
    the file will download from the server.
    I have tried everything. The page works fine during testing
    but not online. Any thoughts.

    Instructions for adding FLV MIME
    type to IIS

  • Flash cs5.5 FLVplayback Encoding Problems with Air for Android

    Dear All,
    I'm trying to play flv in my air application by using FLV playback in flash cs5.5.
    I can play flv in the pc but not on the samsung galaxy tab andriod platform.
    if anyone out there has tried out FLV playback with either an Air For Android application, where the FLV files are packaged within the app, or either streaming via normal http//:, any help  would be greatly appreciated.
    Thanks!

    First disable autoplay. It gave errors for me. Try to make the movie play with the play() command.
    to embed the movie in your air bundle, just go to publish settings for your flash project. Then in that screen go to the player settings.
    In the first GENERAL tab you'll see a the bottom that you can add files to your project
    Propably there is allready your .swf and an .xml file in there.
    Using the + icon you can add your video.
    Make sure that your video is in the same directory as your . FLA file and you can use it as is (by name)
    If for example your flashfile is in c:\mytest\mytest.fla and the video in c:\mytest\videos\myvideo.flv , then you will have to load your video as "videos/myvideo.flv" with a FORWARD slash, never use \
    Good luck

Maybe you are looking for

  • How to import/export data in pl/sql developer

    how to import/export data,table script in pl/sql developer. By using the export functionality i am getting the dump file.I want a sql file.How do i do it? And i want the data in csv file and table script in a sep sql file.How do i do it?

  • Processing Multiple Files for more than 100 Receive Location - File Size - 25 MB each file, file type DML

    Hi Everybody Please suggest. For one of our BizTalk interface, we have around 120 receive locations.  We are just moving (*.dml) files from the source to destination without doing any processing.   We receive lots of files in different receive locati

  • Printing abap form in polish

    Hello When i print a form in polish, special charactors like ł, ś, ć etc are all printed as '#. Polish is installed and we are in Unicode. Ty Hicham.

  • Wndows server 2003 r2 forget adminstartion

    we are using windows server 2003 r2 edition , and now we are forgetting our adminstration password , plz guide me how to crack our adminstration password.

  • Lost remote

    I have searched this topic and I know I can use any other apple remote with my apple tv, but I don't have another apple remote. I lost the one that came with my macbook long ago. So, without any apple remote of any kind, can I "un pair" the lost remo