javascript - IIS Live Smooth Streaming: How to hide control bar? -
javascript - IIS Live Smooth Streaming: How to hide control bar? -
is possible through client-side scripting hide command bar in silverlight web player?
if so, how?
this slplayer i'm using: http://jsfiddle.net/w5h6g/
i've tried placing autohide=true in "initparams" value, didn't work.
<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <style type="text/css"> #silverlight { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } </style> </head> <body> <object id="silverlight" data="data:application/x-silverlight-2," type="application/x-silverlight-2"> <param name="source" value="http://clubace.dk/bb.xap"> <param name="onerror" value="onsilverlighterror"> <param name="background" value="white"> <param name="minruntimeversion" value="4.0.50401.0"> <param name="autoupgrade" value="true"> <param name="windowless" value="false"> <param name="initparams" value="mediaurl=http://level3-live-smooth.cmore.se/live/1270108.isml/manifest"> </object> </body> </html>
edit: question title changed , image added clarify issue.
you can communicate silverlight app javascript, assuming can alter source code silverlight. phone call method within silverlight, javascript , allow method (inside silverlight) handle removing of user control.
if want remove whole silverlight object, can hide/remove div/object holds silverlight content javascript.
calling managed code (silverlight) javascript.
javascript jquery silverlight
Comments
Post a Comment