I have a panel with a lot of parameters that will be running on an Xpression pc, and controlling the Xpression as the main user interface. The panel runs fine, but once I add the calls to Xpression (which work correctly, and recall the right sequence items), it appears to redraw the interface, or reload the grid file every x number of button clicks - say 6-10, or randomly after a click.
As I currently only have one Xpression call in a function called by the buttons in the grid file (see simplified example below), I can easily comment it out, and the behavior goes back to normal. The Xpression is running in the background, and minimized. Bringing it to the foreground makes no difference.
function lowerThird(page)
{
rosstalkex.sendMessage(params.getValue('Xpression_IPAddress', 0), params.getValue('Xpression_RossTalkExPort', 0), "TAKE " + page + ":" + (1 -1) + ":" + 0);
}
On other panels I have created in the past, I have only seen this behavior when using the grid file to move items in and out of playlists. Any thoughts on what the root issue is, and how I can mitigate it?