FORUM

FLV Player Black

Home / Forum / Components Discussions / FLV Player Black / Page 3

  • I’ll look at that asap.


    #  /  posted on Nov 17, 2009
  • Hello – how can I make the player return to the beginning after playing? I tried adding autoRewind as a flashvar and it didn’t work. I would like to return to the beginning and display the imageUrl with the play button overlay.


    #  /  posted on Nov 23, 2009
  • Hi FB, thanks for the support!


    I was able to modify the skin and replaced the blue highlight colors for a bight white highlight… It looks pretty good.


    My main concern is having to maintain a one-off version of the player FLA. In other words, every time you update the code, I will have to compare my one-off FLA library assets (and actionscript) to your new version of the player… Oh well, not a big deal… This is the life of a web developer. :)


    Speaking of, do you maintain any sort of changelog for new versions?


    Thanks!
    Micky


    #  /  posted on Dec 01, 2009
  • This’s FLA source not a program. So, I can’t add a change log property.


    #  /  posted on Dec 04, 2009
  • Thanks again for the feedback.


    One last suggestion for a modification: Pressing pause stops the download of the progressive video (if not fully downloaded already), which would save on bandwidth. :)


    #  /  posted on Dec 05, 2009
  • I’ll look at that to find a solution. But, it automatically downloads movie by NetStream object.


    #  /  posted on Dec 05, 2009
  • does it also support mp3 and can I call your player from actionscript like


    var myMovie: new flvPlayerBlack(“myMovieUrl”) ?


    thanks



    #  /  posted on Dec 11, 2009
  • You can call it as you wrote from other AS3 project after adding class files & library items.
    It doesn’t support only MP3. It support FLV files.


    #  /  posted on Dec 19, 2009
  • Hi,


    If you want your preview image to be centered horizontally and vertically and avoid pixel space that the navigation eats up, here is one fix:


    FLVPlayer.as


    Add this to line 517:


    var navHeight:int = flvplayer.controlsHolder.bg.height; 
    


    And change lines 530 and 535 to this:


    flvplayer.image.y = Math.round((sh-flvplayer.image.height - navHeight)/2); 
    


    #  /  posted on Dec 25, 2009
  • Thanks for your help to others.


    #  /  posted on Dec 25, 2009
  • I just downloaded purchased the video player, but I don’t see the documentation anywhere! And neither the flash installer. I have no clue how to start this!!!!!!!!!!
    Please Help


    #  /  posted on Jan 08, 2010
  • Open source folder. You’ll see all FLA, AS sources. Open deploy/index.html source. You’ll see sample installation.


    #  /  posted on Jan 10, 2010
  • There is no “deploy” folder in here. And the only index.html file is actually in the root folder, but it doesn’t show how to install. Please email me that folder ASAP.
    Does this player support RTMP videos???


    #  /  posted on Jan 11, 2010
  • Please, re-download it. I changed its file structure to make easy to publish on the web.


    Open deploy/index.html on a text editor like Notepad, Dreamweaver. You’ll see


    imageUrl: “videos/image.jpg”,
    videoUrl: “videos/video.flv”


    You can change video-preview image names there.


    If you change this line:


    autoPlays: false,


    To:


    autoPlays: true,


    You don’t need to prepare a preview image. Make it:


    imageUrl: “”,


    #  /  posted on Jan 13, 2010
  • Hi,


    I’m trying to add this player to another flash project but I think I may be falling at the first hurdle. I’m really new to Flash, does anyone have some sample script to make this work?


    #  /  posted on Mar 03, 2010
  • Your project should be AS3. Also, you should add parameters directly instead of FlashVars. If you send me your project files with details, I can help you better.


    My e-mail address: flashblue80@hotmail.com


    #  /  posted on Mar 03, 2010
  • How can I have my video stretched on startup?


    #  /  posted on Mar 30, 2010
  • Open source/com/flashdo/flashblue/FLVPlayer.as


    Change:


    public var stretch:Boolean = false;


    to:


    public var stretch:Boolean = true;


    Then, publish source/flvplayer.fla


    #  /  posted on Mar 30, 2010
  • Hi!


    I would like to set the skinAutoHide value to “true”. How to do that?


    Thanks, it’s quite urgent…


    #  /  posted on Apr 13, 2010
  • Flashblue,

    I sent you a personal message at your hotmail account. I don't mean to be a bother I just want to make sure you at least got the message. I sent my AS2 project file. For the life of me I can't get your player to work in it. If you could send me an example page or make my project file work that would be fantastic. Obviously I'm probably just missing something simple.

    Thanks!

    -Dave


    #  /  posted on Apr 13, 2010
  • mi.jean can you send me a pirvate message about it?


    dbattle I’ll look at your message. I got it.


    #  /  posted on Apr 14, 2010
  • Thanks! I look forward to hearing from you.


    -Dave


    #  /  posted on Apr 15, 2010
  • Hi,
    I just purshased it, looks great.
    However i need this player to load flv file directly from actionscript 2, is it possible to do this with a simple line of code ? Thanks !


    #  /  posted on May 07, 2010
  • ok, sorry, found it ;-)


    var imageUrl = "videos/image.jpg" ; 
    var videoUrl = "videos/video.flv" ; 
    var stageW = 940; 
    var stageH = 375; 
    var defaultVolume = 100; 
    var defaultBuffer = 3; 
    var autoPlays = false; 
    



    #  /  posted on May 07, 2010
  • Ok. You can make them global variables to access everywhere.


    #  /  posted on May 07, 2010
  • Hi i too want to add skinAutoHide value to “true”. How do i do that? Also, how can i change the video url to a different video using a javascript “onClick” event?
    thanks


    #  /  posted on May 20, 2010
  • Can you send me an e-mail to send you autoHide version?


    flashblue80@hotmail.com


    #  /  posted on May 20, 2010
  • I modified FLV player with more options. Please re-download it.


    You can hide navigation controls by:


    flashvars.autoHideNav = true;


    Also, make:


    flashvars.fullSizeView = 3;


    for full FLV size in your player from HTML FlashVars.


    #  /  posted on May 20, 2010
  • Now supports RTMP live stream.


    #  /  posted on May 21, 2010
  • Watermark / logo featured added. You can show/hide watermark by setting


    flashvars.showWatermark = false; 
    


    from JS embed source.


    #  /  posted on May 24, 2010