$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...") |
|||
Line 1: | Line 1: | ||
− | $table cell is a [[ | + | $table cell is a [[Data Functions|Data Function]]. |
This function will return the list item at the specified position. The function is often used along with the [[Create Table From File|create table from file]] command or the [[Set Table Cell|set table cell command]]. It is used to return items from a table at a specified table cell. | This function will return the list item at the specified position. The function is often used along with the [[Create Table From File|create table from file]] command or the [[Set Table Cell|set table cell command]]. It is used to return items from a table at a specified table cell. |
Revision as of 15:07, 11 April 2013
$table cell is a Data 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.