I have a hospitality TV, Samsung HAU8000. I want to open guide sound mirroring, like a screen mirroring.
This is code for open screen mirroring:
var launchApplication = function(appName) {
try {
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view ",
null,
null,
null,
[
new tizen.ApplicationControlData("deeplink", ["mobile_screenmirroring_1"])
]);
// ApplicationControlDataArrayReplyCallback instance
var appControlReplyCallback = {
// callee sent a reply
onsuccess: function() {
console.log("inside success");
},
// callee returned failure
onfailure: function() {
console.log('The launch application control failed');
}
};
tizen.application.launchAppControl(appControl, appName
,
function() {
console.log("[] success !!");
}
,
function(e) {
console.log("[] error !!" + e.message);
}
, appControlReplyCallback
);
} catch (error) {
console.log("Error occured :: " + error.message);
}
};
can you help me to open the sound mirroring guide ?
I have changed
[
new tizen.ApplicationControlData("deeplink", ["mobile_screenmirroring_1"])
to
[
new tizen.ApplicationControlData("deeplink", ["mobile_soundmirroring_1"])
but it hasn't worked.