W/o having seen the site, I am going to take a shot in the dark, having 
worked w/flvs in the past.  Usually, the first think I do in such cases 
is fire up the proxy Charles so I can see what is happening in the 
background.  Looking in your web server logs will help. 

1) Try getting it to work w/o using swfObject.  Eliminate the Javascript 
as  the issue.
 
2) Win2003 does not serve up flv files by default.  Try requesting the 
flv directly and see if you get a response.

3) Are getting a 404 on the flv request when requesting via the page?  
The flash player makes all files requests relative to the .htm file 
loaded--not relative to the swf that was loaded.  So the value in your 
variables.swfpath will probably have to be absolute ("/video/myvid.flv") 
instead of relative ("video/myvid.flv").  This is particularly 
problematic if you are using FU.

4)  Here is a chuck of code that we use (successfully).  It looks very 
similar to yours, w/the two exceptions: the if(typeof SWFObject != 
"undefined") and the addition of flashVars via addParam() instead of 
appending them to the swf url.

<div style="height: 100%; width: 100%; background-image: 
url('/images/SourceImage/salonFinderWorld.jpg'); background-position: 
right top; background-repeat: no-repeat">

<div id="FE125C00-C291-0196-B55E306123669125_flashMovieContainer"><img 
style="border: 1px dotted #cc0000; background: 
url('/wsimages/flash.gif'); -moz-background-clip: -moz-initial; 
-moz-background-origin: -moz-initial; -moz-background-inline-policy: 
-moz-initial; width: 900px; height: 450px" src="/farcry/images/shim.gif" 
border="0" /></div><script type="text/javascript">
        if(typeof SWFObject != "undefined") {
            var so = new 
SWFObject("/files/dmFlash/flashMovie/SalonFinder1.swf", 
"FE125C00-C291-0196-B55E306123669125_flashMovie", "750.00", "450.00", 
"8,0,0,0", "#FFFFFF");
            so.addParam("quality", "high");
            so.addParam("wmode", "transparent");
            so.addParam("flashvars", 
value="searchConfigFile=/xml/wscomponents.xml");
            
so.write("FE125C00-C291-0196-B55E306123669125_flashMovieContainer");
        }
    </script>

</div>


HTH,

Scott

Jake Churchill wrote:
>
> I think you simply need to add include the js file where SWFObject is.  
>
>  
>
> _____
>
> Jake Churchill
> Team Leader
> 11204 Davenport, Ste. 100
> Omaha, NE  68154
> http://www.cfwebtools.com
> 402-408-3733 x103
>
> ------------------------------------------------------------------------
>
> *From:* [email protected] 
> [mailto:[EMAIL PROTECTED] *On Behalf Of *Stephen Moretti
> *Sent:* Wednesday, October 17, 2007 4:52 PM
> *To:* [email protected]
> *Subject:* [farcry-dev] Inserting Flash Video
>
>  
>
> I think I'm probably being dim.
>
> I'm trying to set up an insertHTML_ file to allow insertion of flash 
> video files (flv) into dmHTML pages.
> I've picked up the bits and pieces to embed a flv file in a html page 
> from here : 
> http://www.its.ex.ac.uk/latis/resources/flashplayers/flvplayer.php
>
> Attached is the insertHTML file that I'm using. The flash video is 
> uploaded to the Flash Library.
>
> I only seem to be getting the "Download Flash 8 or higher" - I'm not 
> getting any javascript errors.
>
> Has anyone else embedded flv files into a dmHTML file using 
> insertHTML_?  Any chance you could tell me how you've done it?
>
> TIA
>
> Stephen
>
>
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.5.488 / Virus Database: 269.14.13/1074 - Release Date: 
> 10/16/2007 2:14 PM
>
>
> >
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.488 / Virus Database: 269.14.13/1074 - Release Date: 
> 10/16/2007 2:14 PM
>
>



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" 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/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to