Advanced Forum Search Results
-
Hi all,
I've developed a media player using Silverlight and i'm currently trying to convert it to work as a iGoogle gadget, but for some reason inside the iGoogle Sandbox, any calls made to Silverlight methods or properties returns null. I had cross-domain issues previously when running my player on a normal web page, but i fixed it by ...
-
Hi all,
I'm having the following problem when using an asx file as source for my MediaElement:
The first ENTRY in my asx playlist gets played, but the second entry not. Firefox says that the second entry is being loaded, but the MediaElement's Source property gets set to null as soon as the first element is done playing... When I ...
-
Thanx Harsh,
I'm aware of the breaking change document, that's were I found out about the ExternalCallersFromCrossDomain=”FullAccess” being depreciated, what I'm looking for is a work-around... At the moment for me to do scripting on the MediaElement in my program i have to wrap the MediaElement class and re-expose all of the ...
-
Hi all,
I developed a mediaplayer using Silverlight Beta 2 and I had some issues trying to do a cross-domain call to fetch the xaml source for my Silverlight control. Here is an example of how my code looks:Silverlight.createObjectEx({ source: "http://s3.amazonaws.com/folder/ScriptableTesting.xap",
parentElement: owner,id: ...
-
I figured it out What i had to do was create a new Silverlight project using Silverlight RC1 and then copy my existing Silverlight Beta 2 xaml, code and classes into the new project. You can't just rebuild an existing Silverlight Beta 2 application after installing RC1, you need to create a whole new project and then import all your code ...
-
Hi Ian, Thx for the reply. As far as i understand Silverlight RC1 is the same as Silverlight RTW (correct me if i'm wrong). My minimum version of Silverlight is set to 2.0.31005.0. I'm using the javascript Silverlight.createObjectEx function to create my Silverlight Object.
According to Mike Snow's blog, the first braking change ...
-
Hi all,
I uninstalled the Silverlight 2 Beta 2 SDK, Silverlight runtime and the Tools for Silverlight. I then installed the Silverlight Tools for Visual Studio SP1 (RC1). I proceeded to rebuild an application I developed using Beta 2 (It's a Media Player), i fixed all the error's and warnings, but now when I open the hosting .html page, ...
-
Thx Jonathan, i've managed to skin the Media Player's Controls using the .xaml file as you suggested. I do not have Blend so I searched for the default Slider.xaml template and found it on Tim Heuer's blog. For anyone that is interested it is on ...
-
Hi all,
I've created a Silverlight Media player and now I want to skin my player's Volume Control (slider). One of my colleagues created two .png images for me. One for the slider's thumb and one for the slider's track. I'm kind of lost however as to how to proceed to isolate the slider's thumb and track ...