I have a presentation with two zones. On one zone is a series of videos that are changed with UDP commands. I created these UDP commands using the BrightAuthor interface.
On the other zone is an HTML5 page that contains a countdown clock. This page accepts UDP commands using the BSDatagramSocket() function.
The problem is that, when i open a new BSDatagramSocket, UDP commands will only reach the HTML5 page. If I use BSDatagramSocket().Close(), it will permanently close the socket and allow UDP commands to reach the video zone. But I don't want to close the socket because then I can't send anymore commands to the timer.
Does anyone know how to allow both zones to receive the UDP commands? Is there a way to prioritize the video zone so that it gets the UDP commands first?
Any help is appreciate. Thanks!