Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I disable the left-bottom error message within the video element in a win8 app?

share|improve this question

1 Answer

up vote 0 down vote accepted

I think you need to provide a bit more information about what exactly are you trying to do ? As of now, I think providing the correct video source will help with removing the error message.

<video id="video" width="320" height="240" controls="controls">
        <source src="Videos/abc.mp4" type="video/mp4" />    
</video>

Where Videos is a folder in the project package and abc.mp4 is the video file inside the Videos folder. Hope this helps :)

share|improve this answer
My problem is that I get the videos from the web and sometimes the path is broken and I have my own error message for that so I don't need an another message. – troll Nov 7 '12 at 9:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.