I have an <OBJECT> tag setup to play a video clip that is local on my hard drive. When I try to play it nothing happens. Based on what happens when I try to pass it to Windows Media Player (which says it cannot play the file), I figured out what the problem is. Now I need to find out how to fix it.
The problem is that the filepath is being resolved as "C:/My%20Documents/...", and Windows Media Player can't find the file. How do I get the player to resolve the filepath as "C:/My Documents/..." so the file can be found?
In the code for the object, I have the src attr set as src="Video/filename.wmv". I tried using src="/Video/filename.wmv", but the player wouldn't even display in the window. I also tried using a complete filepath, beginning with "file:///C:/My Documents/..." but that didn't work either.
