ImageShack have moved the location of the direct link form bottom to top. chris001 might not be aware of this i think. i just made a small change to my code. hope chris also would update his code.
my code.
Code:
' '// Direct link to image // The old code
' pos1 = InStr(pos2, strHTML, "width: 500px"" size=""70"" value=""")
' If pos1 Then
' pos2 = InStr(pos1, strHTML, """/>")
' If pos2 Then
' tmp = Mid$(strHTML, pos1 + 31, pos2 - (pos1 + 31))
' TempArray(7) = tmp
' End If
' End If
'// Direct link to image
pos1 = InStr(1, strHTML, "background-color: #DDDDAA;"" size=""70"" value=""")
If pos1 Then
pos2 = InStr(pos1, strHTML, """/>")
If pos2 Then
tmp = Mid$(strHTML, pos1 + 45, pos2 - (pos1 + 45))
TempArray(7) = tmp
End If
End If