Hi,
If you change the NetStreamControllingStreamProvider.as like below you will have secure token working
....
if (_stopping) {
log.info("_onNetStatus(), _stopping == true and will not process
the event any further");
return;
}
if (event.info.code == "NetConnection.Connect.Success") {
if (event.info.secureToken != null) {
_connection.call("secureTokenResponse", null,
TEA.decrypt(event.info.secureToken,
"XXX"));
}
createNetStream();
start(null, clip, _pauseAfterStart);
} else if (event.info.code == "NetStream.Buffer.Empty") {
dispatchPlayEvent(ClipEventType.BUFFER_EMPTY);
}
....