I figure unicode is the way to go, however I've run into a couple problems. When I take the unicodetext out of one field and put it into another, it works fine. But when i transfer the unicode from variable to array, things get sticky. for example, this works:
Code: Select all
put the unicodetext of fld list of cd main into tData
set the unicodeText of fld list2 of cd main to tData
Code: Select all
put the unicodetext of fld list of cd main into tData
repeat with x=1 to 50
put item 1 of line x of tData into lith[x]
end repeat
repeat with x=1 to 50
set the unicodetext of fld "cue" of cd main to lith[x]
wait 5 seconds
end repeat