Stop FLV from auto loading and playing clip

Ask a Question related to Macromedia Flash Player, Design and Development.

  1. #1

    Default Stop FLV from auto loading and playing clip

    I intend to have four video files on my site.
    As of now, when the user goes to the site, all four files play
    simultaneously. What I need is a way (code) to have each file not
    automatically start and
    allow the usr to click a play button. That button is already there and you
    click to activate it.


    Here's the code that automatically plays the clip:


    <a href="http://www.mysite.com"><object type="application/x-shockwave-flash"
    allowScriptAccess="never" allowNetworking="internal" height="345" width="460"
    align="middle" data="http://www.sourcefile.com/flashplayer/video.swf">
    <param name="allowScriptAccess" value="never" />
    <param name="allowNetworking" value="internal" />
    <param name="movie" value="http://www.sourcefile.com/flashplayer/video.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="&#035;ffffff" />
    <param name="menu" value="false" />
    <param name="flashvars"
    value="url=http://newmedia.sourcefile.com/movies/www.sourcefile.com-matrix_ping_
    pong.flv" />
    </object>
    <msprm name="allowScriptAccess" value="never" />
    <msprm name="allowNetworking" value="internal" />
    <msprm name="movie"place
    value="http://www.sourcefile.com/flashplayer/video.swf" />
    <msprm name="quality" value="high" />
    <msprm name="bgcolor" value="&#035;ffffff" />
    <msprm name="menu" value="false" />
    <msprm name="flashvars"
    value="url=http://newmedia.sourcefile.com/movies/www.sourcefile.com-matrix_ping_
    pong.flv" /><COLOR="&#035;FF0000"> Click on screen to Pause, from
    <BIG>myfile.com</BIG> </a>



    qball172 Guest

  2. Similar Questions and Discussions

    1. Stop Playing Flash Automatically
      I hate when my browser automatically starts playing flash advertisements. At the same time, I occassionally find flash useful, so I don't want to...
    2. FF 1.5 Flash 8 videos stop playing/no sound
      I've been having this issue at various site, where the video will load and play for 2-8 seconds then stop and not play anymore, i've increased the...
    3. How to stop an swf song from auto loading
      Hi, I'm having a problem with swf song auto loading .... how do I stop it ... ?? I think I've tries all the usual things ... and tried to...
    4. Trouble telling a media component playing mp3 2 stop
      I am using a built in media component in FlashMX 2004, to play mp3 files. I have a few different mp3s in consistent key frames. Each has its own...
    5. Playing a movie clip once
      Hello, Ok im designing my first flash website. I have a question about playing a movie clip once. See my movie clip is a menu bar that pops out the...
  3. #2

    Default Re: Stop FLV from auto loading and playing clip

    Try this, should work. The autoplay goes in the recall of the video.

    HTML Code:
    <a href="http://www.mysite.com"><object type="application/x-shockwave-flash"
    allowScriptAccess="never" allowNetworking="internal" height="345" width="460"
    align="middle"  autoplay="false" data="http://www.sourcefile.com/flashplayer/video.swf">
    <param name="allowScriptAccess" value="never" />
    <param name="allowNetworking" value="internal" />
    <param name="movie" value="http://www.sourcefile.com/flashplayer/video.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="&#035;ffffff" />
    <param name="menu" value="false" />
    <param name="flashvars"
    value="url=http://newmedia.sourcefile.com/movies/www.sourcefile.com-matrix_ping_
    pong.flv" />
    </object>
    <msprm name="allowScriptAccess" value="never" />
    <msprm name="allowNetworking" value="internal" />
    <msprm name="movie"place
    value="http://www.sourcefile.com/flashplayer/video.swf" />
    <msprm name="quality" value="high" />
    <msprm name="bgcolor" value="&#035;ffffff" />
    <msprm name="menu" value="false" />
    <msprm name="flashvars"
    value="url=http://newmedia.sourcefile.com/movies/www.sourcefile.com-matrix_ping_
    pong.flv" /><COLOR="&#035;FF0000"> Click on screen to Pause, from
    <BIG>myfile.com</BIG> </a>
    Jabez Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139