我正在尝试创建类似于应用程序的东西。
这是我到目前为止所得到的:
function Sys$_Application$_navigate(entry) {
this._ensureHistory();
var state = this._deserializeState(entry);
if (this._uniqueId) {
var oldServerEntry = this._state.__s || '';
var newServerEntry = state.__s || '';
if (newServerEntry !== oldServerEntry) {
this._updateHiddenField(newServerEntry);
__doPostBack(this._uniqueId, newServerEntry);
this._state = state;
return;
}
}
this._setState(entry);
this._state = state;
this._raiseNavigate();
}
但问题是它显示了播放按钮等等。有什么建议吗?
答案 0 :(得分:1)
你尝试过这样的事吗?
myPlayer.moviePlayer.controlStyle = MPMovieControlStyleNone