Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
extract links (a href => zip only)
#4
Sorry to ask this, but I have to much problems with Internet Explorer.
You script works perfect!, but some sites just don't act well in IE8 and IE9 (I get blank pages or freezing so you script doesn't even get a chance to work).

Is there any chance the code you have given can be adjusted for Firefox?


edit:
Could you also give an example how to delete duplicate array items, if I have an array called "a" of type string.
then I want remove all duplicate array contents.

Code:
Copy      Help
a[0]="abc"
a[1]="abc"
a[2]="abc"
a[3]="cde"

I currently use this:
Macro Macro7
Code:
Copy      Help
int i
ARRAY(str) a

for i 0 a.len
,if(i>1)
,,if(a[i]=a[i-1])
,,,a[i]=""

but this is not effective, I end up with:
Code:
Copy      Help
abc

abc
cde
I have to remove the empty lines and redo my code.


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)