Background
I have several html sources and custom browser docks which communicate amongst themselves via BroadcastChannel messages. Does SceneSwitcher support this? If not, would be a nice addition.
Solution
ability to tap into javascript broadcast channels:
var bc = new BroadcastChannel('channel-name')
send messages with
bc.postMessage('message-to-send')
receive messages with
bc.onmessage = function(message){
if(message == 'message-to-send') {
...
}
}
Alternatives
No response
Anything else we should know?
No response
Background
I have several html sources and custom browser docks which communicate amongst themselves via BroadcastChannel messages. Does SceneSwitcher support this? If not, would be a nice addition.
Solution
ability to tap into javascript broadcast channels:
send messages with
receive messages with
Alternatives
No response
Anything else we should know?
No response