Yes I am doing this, although the typing to the form seems a bit slow for me when the text consists of a paragraph of maybe 100 characters. There seems to be a lag before the typing starts. Also, avoid the use of macro-enabled excel formats since BAS does not seem to be compatible with them.
Can't Loop Through List Of URLS
-
HELP! I am driving myself insane drying to get started with BAS. I am a senior PHP programmer(also know 7 other languages) but yet I cannot even get past step #1 with creating a test script! I am just trying to load a .txt file that has a list of URLs and then loop through each URL and load the URL in a browser. For some reason, BAS is looping through each letter instead of each line.. For example, this is my list:
http://mywebsite.com
http://otherwebsite.comThe BAS software does not correctly parse lines with any .txt file(I tried also .doc, .csv, .xls). No matter what, the BAS will do this loop through each letter instead of using each entire line:
Loop 1 - Load URL "h"
Loop 2 - Load URL "t"
Loop 3 - Load URL "t"
Loop 4 - Load URL "p"
Loop 5 - Load URL ":"
Loop 6 - Load URL "/"
Loop 7 - Load URL "/"
and so on....I dont understand if I am supposed to format a list differently inside the txt file??


