$table total rows

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
(Example)
Line 8: Line 8:
 
<pre>
 
<pre>
 
navigate("http://www.ubotstudio.com/playground/simple-form", "Wait")
 
navigate("http://www.ubotstudio.com/playground/simple-form", "Wait")
create table from file("C:\\Users\\LillyT\\Documents\\my table.txt", &my table)
+
create table from file("C:\\Users\\Documents\\my table.txt", &my table)
 
set(#row, 0, "Global")
 
set(#row, 0, "Global")
 
loop($table total rows(&my table)) {
 
loop($table total rows(&my table)) {

Revision as of 12:58, 27 May 2014

$table total rows is a Data Function. This function will grab the total rows within a table. This is especially useful within a loop, when you are trying to fill a lot of fields with the contents of a certain column of information.

Table: The desire populated table where the table total rows will be pulled from.

Example

navigate("http://www.ubotstudio.com/playground/simple-form", "Wait")
create table from file("C:\\Users\\Documents\\my table.txt", &my table)
set(#row, 0, "Global")
loop($table total rows(&my table)) {
    type text(<about me textarea>, $table cell(&my table, #row, 0), "Standard")
    type text(<about me textarea>, $table cell(&my table, #row, 1), "Standard")
    wait(4)
    increment(#row)
}

Running the script will set the loop to loop according to how many rows are in the table. The increment command then increments the row position each time the command is run.

The script will then fill the field with items in row 0 column 0, row 0 column 1, row 1, column 0 and row 1, column 1.

File:Tabletotalrows.png

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox