FORUM

HTML / XML Video List AS3 - v1 ( & FLV Player )

Home / Forum / Components Discussions / HTML / XML Video List AS3 - v1 ( & FLV Player )

  • Hi,

    Check the previous comments in page 3/4 regarding the scroller reset position for mac. The code is posted there. If you still have problems write an email at contact [at] flashtuning.net and we'll email it to you as soon as we can.

    Best,
    FT


    #  /  posted on Oct 17, 2008
  • Hi,

    Yes you can adjust/customize the any graphic symbol/parameter to achieve the exact look and feel you need if you have intermediate to advanced Flash usage knowledge.

    Best regards,
    Flashtuning


    #  /  posted on Oct 17, 2008
  • hi,
    great component, and i was eying your AS3 table/scroller for another project for a while now – and the price was outstanding!

    so:
    after loading my vids and data, the progress bar is loading the movie, but no video appears, and the video buttons are all frozen.

    i‘m using .mp4 files.

    need some advice on how to get this to work. i‘ve gone thru many other players on another service to no avail…

    thanks!
    s


    #  /  posted on Sep 16, 2008
  • ahh ok:
    specified version 9.0.115.0 for flash and also updated my swfobject to 2.1….

    all is good!
    great component!
    s


    #  /  posted on Sep 16, 2008
  • Glad to hear sank you resolved it by updating the last Flash player / swfobject.


    #  /  posted on Sep 17, 2008
  • hi
    very glad to see that you are attending to your components/clients, it‘s refreshing! ;)

    found an issue:
    on a mac the scroller defaults to the bottom of the list for the table, and doesn‘t show the items until the top of the track is clicked.

    i posted an example here:
    http://newlygreens.com/test/
    -look at it on a mac using firefox or safari.

    paramters:
    hide buttons, use mousewheel

    uncommented a.s.: if (_ymouse > maskH) isOverTarget = 0 ; if (_ymouse < 0) isOverTarget = 0 ;

    i did that to remove the autoscroll…
    do you have a mac to see this?

    do let me know a solution or fix.
    thanks!
    s


    #  /  posted on Sep 24, 2008
  • Hi,

    Thanks for your feedback.

    The scroller works correctly, but if you want to remove the autoscroll you need to comment the startCheckMouseScroll() method entirely.

    Go inside the table rendered event handler method at the bottom (I think is line 81 in original .fla file) and comment the startCheckMouseScroll(); method call.

    Best,
    FT


    #  /  posted on Sep 24, 2008
  • ok, i re-extracted the files from the zip fresh, commented out on line 141:

    //check mouse scroll percentage startCheckMouseScroll();

    uploaded, cleared cache, same issue:
    http://newlygreens.com/test/

    i actually checked your own example on the this site on firefox on the mac, it produces the same issue…

    please advise,
    thanks
    s


    #  /  posted on Sep 25, 2008
  • Hi,

    This is a obviously a Flash player problem not a scroller problem. Make sure you have the latest Flash player version installed on your firefox/safari on Mac.

    If you still have this issue try to add the following line in the tableRenderedHandler event handler:

    sb.scrollPercentage = 0;

    Best,
    FT


    #  /  posted on Sep 26, 2008
  • thanks for the continued support…
    would that go in here? :

    function tableRenderedHandler(evt:Event) { startFadeVideoList(); activateHandlers();
    }


    #  /  posted on Sep 26, 2008
  • Yes, add it there at the bottom. If still have the issue do like this:
    Copy paste the following two methods after the table rendered method:

    function setTop(e:Event) { sb.scrollPercentage = 50; e.target.removeEventListener(“enterFrame”,setTop);
    }

    function resetScroller() { addEventListener(“enterFrame”,setTop);
    }

    ...and call the resetScroller method from within the table rendered method:

    function tableRenderedHandler(evt:Event) {
    startFadeVideoList();
    activateHandlers();
    resetScroller();
    }

    Best,
    FT


    #  /  posted on Sep 26, 2008
  • ok, i have this but it gives me a.s. errors:

    function tableRenderedHandler(evt:Event) { //after table is rendered startFadeVideoList(); activateHandlers(); resetScroller(); sb.scrollPercentage = 0; }

    function setTop(e:Event) { sb.scrollPercentage = 50; e.target.removeEventListener(%u201CenterFrame%u201D,setTop); } function resetScroller() { addEventListener(%u201CenterFrame%u201D,setTop); }
    function init() { xmlObj = new XMLDocument(); xmlObj.ignoreWhite = true;


    #  /  posted on Sep 28, 2008
  • additionally, i just cheeked the AS2 version of the videolist on mac firefox, there is no scrollbar problem there… looks like it‘s an AS3 issue only…

    please advise…
    thanks!
    s


    #  /  posted on Sep 28, 2008
  • apologies for the many posts, disregard my previous mssg about the a.s. error, i realised i forgot to change the quotes in the copy/paste…

    uploaded the revised file, now the scroll dragger appears half way down the track, still no items displayed until moving the dragger to the top…

    s


    #  /  posted on Sep 28, 2008
  • Hi,

    Simply set the sb.scrollPercentage = 0; instead sb.scrollPercentage = 50; in the setTop method. The 50 value was just for testing :).

    Best,
    FT


    #  /  posted on Sep 28, 2008
  • ok,
    that fixed the dragger position ;)

    lastly:
    i noticed that the scroll items are all there, but the the track has about 5 times more empty space below the last item in the table…

    this also makes the dragger very sensitive on scrolling since there is a huge amount of space in the scroll field…

    any suggestions on this one?
    thanks!
    s


    #  /  posted on Sep 29, 2008
  • don‘t work .


    #  /  posted on Sep 30, 2008
  • Full screen is working just fine. Make sure you have included the AC_RunActiveContent.js in your application folder and you have set the allowFullScreen=true in the .html file within the .swf object resides.

    If you‘re using Flash CS3 simply go to Publish Settings / HTML tab and from the Template drop down list select Flash Only – Allow Full Screen.


    #  /  posted on Sep 30, 2008
  • will this support rtmp?


    #  /  posted on Oct 12, 2008
  • Yes, as specified in the product description, check again the paragraph before the key features title.


    #  /  posted on Oct 15, 2008
  • Hi, Im trying to go back thru the previous posts, as Im having the same scrolling issue (starting from the bottom and also have empty spaces) but Im kinda lost.

    Could you please post the exact code to replace so this problem can be fixed? thanks in advance.


    #  /  posted on Oct 16, 2008
  • Hi, can i modify the player height, if i would need to make it larger? Thanks.


    #  /  posted on Oct 17, 2008
  • Hi,

    Check the previous comments in page 3/4 regarding the scroller reset position for mac. The code is posted there. If you still have problems write an email at contact [at] flashtuning.net and we‘ll email it to you as soon as we can.

    Best,
    FT


    #  /  posted on Oct 17, 2008
  • Hi,

    Yes you can adjust/customize the any graphic symbol/parameter to achieve the exact look and feel you need if you have intermediate to advanced Flash usage knowledge.

    Best regards,
    Flashtuning


    #  /  posted on Oct 17, 2008
  • Hi, can i use it as an independent flash player? I mean mu idea is to use this with the playlist, but i also have some links other videos wich are not and will not be in the playlist, so can i point that videolink so it culd be played with this component or i should keep playing that videos with other independent video player like web flv player? Thanks


    #  /  posted on Oct 22, 2008
  • Hi,

    Thanks for your interest.

    It can be used as an independent player but you need Flash / ActionScript knowledge to "tell" the player which particular video to play similar to mouse cell press video play action.

    Best,
    FT


    #  /  posted on Oct 24, 2008
  • I really like this player. When I tried to resize it in flash..it cuts off the player. I need it to be 850 in width. Also, it plays fine on my computer…when I upload it…nothing! Just the gray screen is there online. Can you help? Thanks.


    #  /  posted on Oct 27, 2008
  • Hi,

    You simply follow the steps described in the quick start guide. You can customize any graphic symbol and re-position the elements.

    If you need to be 850px in width you first select the Flash document properties panel and set the 850px width. After that you probably need to re-position the elements to fit in the new area. To ajjust the visible area size for the video list you select the scroll bar component and adjust the viewAreaWidth and viewAreaHeight parameters.

    Best regards,
    Flashtuning


    #  /  posted on Oct 28, 2008
  • any idea on how to make this player autoplay the next flv? I have tried but my AS3 skills are lacking


    #  /  posted on Nov 03, 2008
  • Thanks for your advice but, I did all of that. It's still not working when I upload it on my server. Looks great on my computer and does nothing online (which doesn't help…lol).


    #  /  posted on Nov 06, 2008