Search found 3 matches

by dragon73
Sun Feb 08, 2015 8:51 am
Forum: Programming Helium Scraper
Topic: Writing a variable to a kind
Replies: 0
Views: 24303

Writing a variable to a kind

Is there any way to write a variable to a kind? I would like to be able to insert the variable into a text box on a website. Thanks.
by dragon73
Sun Feb 08, 2015 8:49 am
Forum: JavaScript programming
Topic: Writing a variable to a table
Replies: 0
Views: 31067

Writing a variable to a table

How do I write a variable to a table directly in JavaScript? I want to do something like: //variable "test" is a CSV string text = Global.GetVar("test"); array = text.split(",") array_length = array.length for (i=0, i < array_length, i++) { var name_tmp = array[i]; Global.DataBase.Query(INSERT INTO ...
by dragon73
Mon Jan 12, 2015 3:37 pm
Forum: Programming Helium Scraper
Topic: Filtering which row is extracted based on text in one kind
Replies: 0
Views: 23805

Filtering which row is extracted based on text in one kind

Is there a way to filter whether a row is extracted or not based on a single kind in that row. I am able to filter a single kind based on whether it contains a certain text or not, but not the entire row. I want to be able to avoid extracting data that I don't want by filtering it based on the text ...