Hi Xavier,
That's great! This allows me to extract the list of images, in the form:
<img src="images/JRG9.jpg" width='100' height='100' border="0">
How can I now display the image at this URL in an Image Object?
I've tried things like:
set the imageSource of image 1 to "full_url/images/JRG9.jpg"
and
put url "full_url/images/JRG9.jpg" into image 1
and
set the imageData of image 1 to url "full_url/images/JRG9.jpg"
Thanks a lot
Dave
On 10 Feb 2006, at 12:00, [EMAIL PROTECTED] wrote:
Hi David
It's quite simple:
put url thisurl into mydata
repeat while "<img" is in mydata
put offset("<img", mydata) into a
put offset(">",mydate, a) into b
if b < 1 then exit repeat
add a to b
put char a to b of mydata & CR after urlList
delete char 1 to b of mydata
end repeat
this should fit any purpose - including where image tags are broken
across
multiple lines....
cheers
Xavier
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution