You can flip flop with the ticker. Here's what I came up with for the format files. Been working great for all of our election coverage:
Define two variables for each of the Take IDs:
[% storageloc_even = "1000" %]
[% storagelocascii_even = ASCII("193") _ ASCII("192") _ ASCII("192") _ ASCII("192") %]
[% storageloc_odd = "1001" %]
[% storagelocascii_odd = ASCII("193") _ ASCII("192") _ ASCII("192") _ ASCII("193") %]
First is the real number, while the second represents the ascii keys for that number. Its used for simulating key presses when you send the CII command to Xpression.
Just before the W command in the format file, add in the following:
[% IF ((SEQUENCEID % 2) == 1 %]
[% storageloc = storageloc_odd %]
[% storagelocascii = storagelocascii_odd %]
[% ELSE %]
[% storageloc = storageloc_even %]
[% storagelocascii = storagelocascii_even %]
[% END %]
This gives you your flip flop action. Just use the storagelocascii variable in your CII command, like this:
Z[% storagelocascii %] [% ASCII("248") %]\[%CRLF%]
Those additions should be all you need to get clean transitions between results pages.
#XPression