I see your using the flow player flv viewer - this will help you get started. Also you should be checking the flowplayer forums - flowplayer itself has an alternative to swfobject (I have not tried it); also the flowplayer forum does have some posts about using it with swfobject
The code below is working (upto a point - I can't seem to get the flv to display :P ) in the head put the following: <script type="text/javascript" src=" http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script> <script type="text/javascript"> var flashvars = { config: "{ playList: [ { name: 'clip1', url: 'bunny.flv' }], loop: false, autoPlay: false, autoBuffering: false, startingBufferLength: 0, bufferLength: 3, hideControls: false, showFullScreenButton: false, initialScale: 'fit', showPlayList: false, showMenu: false, menuItems: [false, false, false, false, false, false, false], controlBarBackgroundColor: 0x96A0AF, timeDisplayFontColor: 0x00478E }" }; var params = {}; params.quality = "high"; params.scale = "noscale"; params.wmode = "transparent"; var attributes = {}; attributes.id = "FlowPlayer"; swfobject.embedSWF("FlowPlayerLight.swf", "player", "384", "316", "9.0.0", false, flashvars, params, attributes); </script> and in the html body put the following: <div id="player"> <a href="http://www.adobe.com/go/getflashplayer"> <img src=" http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> </a> </div> - S 2009/12/31 Chris <[email protected]> > Thanks for the info and link Sam, I have looked through that page and > looked and looked and looked, but am still as confused as before ;-( > > Is there an easy-to-use guide for complete newbies anywhere please ? > > Chris > > On Dec 31, 9:00 pm, Sam Sherlock <[email protected]> wrote: > > that page is using the Flash Player Version Detection 1.7 by Adobe > > > > Perhaps you have a page that uses swfobject (this being a support group > for > > swfobject :P) > > > > I think that if you convert it to swfobject dynamic or static your issue > > will be solved :) > > > > so as Kyle advised check the swfobject wiki docs & examples > > > > http://code.google.com/p/swfobject/w/list > > > > if you generate your content you should have a working example in a flash > :) > > > > - S > > > > 2009/12/31 Chris <[email protected]> > > > > > > > > > Thanks Kyle and Sam, the URL iswww.130609.com/bunny- it works in FF > > > and Flash 10, but *not* with viewers that are on IE6 *and* Flash 9. > > > > > Any help much appreciated. > > > > > Chris > > > > > On Dec 31, 6:37 pm, Sam Sherlock <[email protected]> wrote: > > > > yes. If you having troubles post a link to your project or some code > > > > - S > > > > > > 2009/12/31 Chris <[email protected]> > > > > > > > Does this *definitely* work if the viewer has only got IE6 and > Flash 9 > > > > > please ? > > > > > > > Chris > > > > > > > -- > > > > > > > You received this message because you are subscribed to the Google > > > Groups > > > > > "SWFObject" group. > > > > > To post to this group, send email to [email protected]. > > > > > To unsubscribe from this group, send email to > > > > > [email protected]<swfobject%[email protected]> > <swfobject%2bunsubscr...@googlegroups.com> > > > <swfobject%2bunsubscr...@googlegroups.com> > > > > > . > > > > > For more options, visit this group at > > > > >http://groups.google.com/group/swfobject?hl=en.-Hide quoted text - > > > > > > - Show quoted text - > > > > > -- > > > > > You received this message because you are subscribed to the Google > Groups > > > "SWFObject" group. > > > To post to this group, send email to [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]<swfobject%[email protected]> > <swfobject%2bunsubscr...@googlegroups.com> > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/swfobject?hl=en.- Hide quoted text - > > > > - Show quoted text - > > -- > > You received this message because you are subscribed to the Google Groups > "SWFObject" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<swfobject%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/swfobject?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/swfobject?hl=en.
