如何使用 javascript 设置 silverlight 插件的值
我似乎不知道如何为 Silverlight 插件设置特定值。具体来说,是splashScreenSource 值。我可以使用 param(名称/值)方法来实现此功能,但是,我使用 JavaScript 注入 Silverlight 插件,因此不确定如何让插件识别出我实际上所做的事情想要使用启动画面。
我似乎无法使用默认 Silverlight.js 文件提供的参数列表来设置该值。
Silverlight.createObject( source ,parentElement , id ,properties , events , initParams , userContext );
任何想法都将不胜感激,
非常感谢,
I can't seem to figure out how to set a particular value for the Silverlight Plug-in. Specifically, the splashScreenSource value. I'm able to get this working using the param (name/value) method, however, I'm injecting the Silverlight plug-in using JavaScript and therefore not sure how I can get the plug-in to recognize that I do in fact want to use a splashscreen.
It doesn't appear that I can set the value using the args list provided via the default Silverlight.js file.
Silverlight.createObject( source , parentElement , id , properties , events , initParams , userContext );
Any idea's will be greatly appreciated,
thanks much,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
属性参数应该是一个 JavaScript 对象,其属性与参数名称集相匹配,并添加了一些附加内容,例如宽度和高度。因此,您可以将以下对象传递给属性参数。
The properties parameter is expected to be a JavaScript object whose properties match the set of param names with a few additions such as width and height. So you can pass the following object to properties parameter.