$table total rows

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
(Example 1)
 
Line 22: Line 22:
 
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.
 
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]]
+
[[File:vphs43.jpg]]
 
+
  
 
== Example 2 ==
 
== Example 2 ==

Latest revision as of 15:44, 28 December 2016

$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.

[edit] Example 1

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.

Vphs43.jpg

[edit] Example 2

To randomize the row number while looping through the contents of the table, simply insert a rand function in place of an incrementing #row variable.

navigate("http://www.ubotstudio.com/playground/simple-form", "Wait")
create table from file("C:\\Users\\Documents\\my table.txt", &my table)
loop($table total rows(&my table)) {
    set(#row, $rand(20, 300), "Global")
    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)
}

The script will run the set command, assigning a random number to the variable #row.

The random number between the set range will determine what row the table will be pulling from.

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox