53063593e3
Final
25 lines
577 B
HTML
25 lines
577 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Web Messaging (b)</title>
|
|
<style>
|
|
#output {
|
|
font-family:"Courier New";
|
|
white-space:pre;
|
|
}
|
|
</style>
|
|
<script src='OSC.js'></script>
|
|
</head>
|
|
<body>
|
|
<div id='output'>Received messages will display here</div>
|
|
<script>
|
|
window.onmessage = function(event)
|
|
{
|
|
O('output').innerHTML =
|
|
'<b>Origin:</b> ' + event.origin + '<br>' +
|
|
'<b>Source:</b> ' + event.source + '<br>' +
|
|
'<b>Data:</b> ' + event.data
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |