A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: I need some help

  1. #1
    Junior Member
    Join Date
    May 2006
    Posts
    4

    I need some help

    Hello,

    I have posted a video on an online server that gives my html code to paste back into any web site builder. Iwant to buffer more of the video before it autoplays but I jave no idea what to insert or where to insert it in the following code.

    <object type="application/x-shockwave-flash" width="600" height="322" wmode="transparent" data="http://blip.tv/scripts/flash/flvplayer.swf?autoplay=True&file=http://blip.tv/file/get/6welchs-CVPIII379.flv">
    <param name="movie" value="http://blip.tv/scripts/flash/flvplayer.swf?autoplay=true&file=http://blip.tv/file/get/6welchs-CVPIII379.flv" />
    <param name="wmode" value="transparent" />
    </object>

    IF there is any one with any ideas or instruction you could give I would appreciate it. I feel like I am trying to read hyroglyphics. (sp)

    thank you for your help

    GReg

  2. #2
    Ninja Rider Jhonte's Avatar
    Join Date
    Sep 2004
    Location
    Uppsala,Sweden
    Posts
    253
    you can set the buffertime in your flash videoobject, it has a parameter that are called something like buffertime, if you set it to example 30, it loads 30seconds before it starts to play... good luck
    Show me the way to the next whiskeybar ...

  3. #3
    Junior Member
    Join Date
    May 2006
    Posts
    4
    hi jhonte,

    I know therre is something like thatbut I am so green about flash and code i need some one to litterally give me the code and where to put it. I have researched it on the web and everything is so complicated.

  4. #4
    Ninja Rider Jhonte's Avatar
    Join Date
    Sep 2004
    Location
    Uppsala,Sweden
    Posts
    253
    hehe ok, but have you dragged an videoobject to the stage?,, or how do you play the video?? if you have dragged, just click once on the object and set the bufferTime in the parameterswindow that shows

    another way if you just use actionscript is to do it like this:
    Code:
    var video:FLVPlayback;
    video.autoPlay = true;
    video.contentPath = "file";
    video.width= <something?>
    video.height...  and so on..
    // then you have to set the bufferTime like this
    video.bufferTime=30;
    Show me the way to the next whiskeybar ...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center