Advanced Forum Search Results
-
Is that used to put xaml in or get it out from the client?
-
Is there a way to suck out all the xaml as it stands (including all elements added or changed programmatically). Is the xaml reader used for that? I want to figure out a way to save changes to an app when someone is finished and able to restore upon return.
-
I've heard maybe June.
-
O.K., so I think I finally fixed this lame ass problem. At least I think so after 12 hours.
Turns out that the problem might have been that I was working in a UserControl project as opposed to a WebApp or WebSite project. I created a new project and copied everything over and low and behold, I have playing video.
I have been reading the forums ...
-
I am actually no longer using the embeded resource. I am now using the following url as the source:
http://www.sonypictures.com/movies/21/video/trailer/21_trailer_high.asx
I will be running stuff from the web anyway if I ever actually get to see video play in a browser. Just thought the embedded file would be easy to use just as a quick test. ...
-
They need to add a link next to "Mark as Answer" named "Defeated".
-
Yeah, I tried the code you gave me first "al dente"(sp?) and got the blue rectangle but no video. Then I added some textblocks to track the different events associated with the mediaelements (i.e. CurrentStateChanged, Loaded, MediaFailed, etc.) The only response I really got anything out of was mediaFailed and after adjusting the ...
-
So here is the latest. I dug down through the exception and found that the inner exception is reporting AG_E_NETWORK_ERROR. I take the url that is in the source property and paiste it in a browser and the video loads and plays so the address seems good and the "network" is up. It did take like 20 seconds to load. Is there a timeout ...
-
Thanks sladapter, I really appreciate the help (on a Sunday no less)
So yes the blue box shows up and the breakpoint at the Application_Startup gets hit. I walk it past the breakpoint and it seems to be all good. But no video.
I just got finished adding textblocks to your code that triggered off of every eventhandler I ...
-
Here is the full xaml not much here:
<UserControl x:Class="testMediaElement.Page"xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="640" Height="480">
<Grid x:Name="LayoutRoot" ...