I saw at the outset that you where being led astray.
The array will start at 0 being the first url.
I did not say anything because you had some sharp individuals helping you and I was'nt sure how to start.
Here is what you were told
If>URLS_COUNT>0
Let>k=1
Repeat>k
Let>ThisURL=URLS_%k%
MessageModal>ThisURL
//we could write it to a file:
WriteLn>outputfile,result,ThisURL
Let>k=k+1
Until>k=URLS_COUNT
Endif
Here is what I think will work?
Code: Select all
If>URLS_COUNT>0
Let>k=0
Repeat>k
Let>ThisURL=URLS_%k%
MessageModal>ThisURL
//we could write it to a file:
WriteLn>outputfile,result,ThisURL
Let>k=k+1
Until>k=URLS_COUNT
Endif
Like I said, I'm not sure how to start this, If there is only 1 url, URLS_COUNT will be equal to 0 not graeter than 0.
The problem I believe has been that it is skipping the url in the array[0] spot.
I would wait for a response from Marcus on this post as I have been using MS for only 2 months, but im pretty sure im correct on this
Good luck