Re: Embedding Flash Files in CF Page

2009-09-08 Thread Chris Montgomery
Jason Fisher said the following on 9/5/2009 11:19 AM: [snip] If it's still not flying, give us a quick overview of the file locations, including the template and the files above, and we'll see what we can see from there. Good luck! Jason, et. al., I did finally get this to work on my

Re: Embedding Flash Files in CF Page

2009-09-08 Thread Jason Fisher
Am not familiar with Mura's setup, but my guess is that a baseURL or something is being defined somewhere that is causing trouble for the relative paths to player and/or video source files. Glad you got it working, though!

Re: Embedding Flash Files in CF Page

2009-09-07 Thread Tom Chiverton
On Saturday 05 Sep 2009, Chris Montgomery wrote: Well, after trying everything I can think of, this isn't working. Could there possibly be some mime type issues with the .flv files? I'm testing this on my local development box, WinXP Pro, CF8, using the built-in web server with CF. Any 404's

RE: Embedding Flash Files in CF Page

2009-09-05 Thread WebSite CFTalk
06:37 To: cf-talk Subject: Re: Embedding Flash Files in CF Page Well, after trying everything I can think of, this isn't working. Could there possibly be some mime type issues with the .flv files? I'm testing this on my local development box, WinXP Pro, CF8, using the built-in web server

Re: Embedding Flash Files in CF Page

2009-09-05 Thread Jason Fisher
Hmmm, that works for me day and day out, regardless of whether mime types have been set, as far as I can recall. Possible issues I can think of would be bad path somewhere (should be relative to the template locatoin): * make sure that the script reference is properly pointing to the

Embedding Flash Files in CF Page

2009-09-04 Thread Chris Montgomery
Howdy, I've never worked with Flash files before and now have a need to embed some in a CF page. The files are in .FLV format, not .swf. Is there a quick tutorial on how to do this in CF? I'm on a CF8 server. FWIW, I want to do something like what is on this page:

Re: Embedding Flash Files in CF Page

2009-09-04 Thread Jason Fisher
Get a copy of swfobject.js from Google Code (http://code.google.com/p/swfobject/) and then get a copy of mediaplayer.swf (can be free, depending: http://www.longtailvideo.com/players/jw-flv-player/). Put this in the head: script type=text/javascript src=js/swfobject.js/script Then put this

Re: Embedding Flash Files in CF Page

2009-09-04 Thread Chris Montgomery
Jason Fisher said the following on 9/4/2009 6:14 PM: That should get you started ... Thanks, Jason, I'll give it a whirl. I'll need to tinker with it to have it render all six videos (just like the page I cited previously). -- Best regards, Chris Montgomery

Re: Embedding Flash Files in CF Page

2009-09-04 Thread Jason Fisher
Yeah, just give each DIV a unique ID, each video gets its own script block, and then make sure that each so.write() method references its matching DIV's ID, and you'll be good to go. ~| Want to reach the ColdFusion community

Re: Embedding Flash Files in CF Page

2009-09-04 Thread Chris Montgomery
Jason Fisher said the following on 9/4/2009 9:00 PM: Yeah, just give each DIV a unique ID, each video gets its own script block, and then make sure that each so.write() method references its matching DIV's ID, and you'll be good to go. Great, thanks for the help! -- Best regards, Chris

Re: Embedding Flash Files in CF Page

2009-09-04 Thread Chris Montgomery
Well, after trying everything I can think of, this isn't working. Could there possibly be some mime type issues with the .flv files? I'm testing this on my local development box, WinXP Pro, CF8, using the built-in web server with CF. Jason Fisher said the following on 9/4/2009 6:14 PM: Get a