Getting text into table from plist file (2)

Hello All,

I am trying to get text into a table from a plist file that i have saved text to when i quit the app. On launching my app i call a function to get the text back into the table. I am having trouble getting the data back into my table. I have been trying to do the following but neither of these seem to work. They are giving me errors.


set contents of data cell "Servers" of table view "servers" of scroll view "servers" of window "with" to contents of curRow as string

copy (contents of curRow as string) to window "with" of scroll view "servers" of table view "servers" of data cell "Servers"

Anyone know how i can get text back into my table? Thanks!!

This doesn’t work either.


copy (curRow as string) to data cell "Servers" of table view "servers" of scroll view "servers" of window "with" 

However if i try copying it to a text field like this, it works fine:


set contents of text field "serverTXT" of window "with" to contents of curRow

Need to get it inot the table though??