Is there any way to disable the fullscreen mode or disable
the double click event for a Media Player built with Microsoft Expression Encoder?
Yes.
Edit BasePlayer.js:
Change:
_onFullScreen:function(){var
a=this.get_element().content;a.fullScreen=!a.fullScreen}
To:
_onFullScreen:function(){var
a=this.get_element().content;a.fullScreen=false}
I tried various methods to overide this method in the inherited Extended Player Class, but without success. Perhaps there are private member variables that the inherited class cannot access, or perhaps I was doing something wrong. In any case, this method works. If you know of a better one, let me know.