0

I've this as3 code that from the Wowza server activates a function and returns a string. But once I get it, I can't go in Full Screen Interactive mode.

this.NetConnectionData.call("isUserPaid",new Responder(function(data:Object):void {
    var val:String=data.isUserPaid+"";
    if(val == "true") {
           this.stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
    } else {
            Alert.show("Error!");
    }

}),nomeUser);

And btw, in Html part I've already set "params.allowfullscreeninteractive = true;"

It's a bug or have I done something wrong? Thank you in advance!

4

1 回答 1

1

Adobe docs声明FULL_SCREEN_INTERACTIVE 模式只能响应鼠标或键盘点击来设置,因此您不能从呼叫响应者回调中设置它。

于 2013-07-16T12:31:47.867 回答