$table cell
From UBot Studio
(Difference between revisions)
(Created page with "$table cell is a Variable Function. This function will return the list item at the specified position. The function is often used along with the [[Crea...") |
Revision as of 21:05, 18 October 2012
$table cell is a Variable Function.
This function will return the list item at the specified position. The function is often used along with the create table from file command or the set table cell command. It is used to return items from a table at a specified table cell.
Example
navigate("http://www.ubotstudio.com/playground/simple-form", "Wait") create table from file("C:\\Users\\LillyT\\Documents\\my table.txt", &my table) type text(<about me textarea>, $table cell(&my table, 0, 0), "Standard")
Running this script creates a table from the table file specified in the create table from file command.
The type text command set to the $table cell function will place the value of the specified table cell into the field.
Additional Information
To browse for your table file, simply click the browse button on the create table from file command.