Any good method to put image from Internet to RR stack?
Posted: Tue May 29, 2007 8:51 am
Hi,
I use the following to load a graph image from my website:
put "http://www.myweb.com/pic/graph.png" into tImageURL
put URL tImageURL into image "Graph"
The graph size is only 13 KB and load very fast in browser, usually within a second. However it always fail to load into my RR project. It seems that RR get the image much much slower than browser.
Any methods to ensure getting the image and faster?
Actually I tried a stupid method to get the image as below:
put "http://www.myweb.com/pic/graph.png" into tImageURL
Repeat for 3 times
put URL tImageURL into image "Graph"
if the size of image "Graph" = 0 then
wait 1.5 seconds
else
exit repeat
end if
End Repeat
However the graph is still always fail to load into image "graph".
Please help.
Thanks and best regards
I use the following to load a graph image from my website:
put "http://www.myweb.com/pic/graph.png" into tImageURL
put URL tImageURL into image "Graph"
The graph size is only 13 KB and load very fast in browser, usually within a second. However it always fail to load into my RR project. It seems that RR get the image much much slower than browser.
Any methods to ensure getting the image and faster?
Actually I tried a stupid method to get the image as below:
put "http://www.myweb.com/pic/graph.png" into tImageURL
Repeat for 3 times
put URL tImageURL into image "Graph"
if the size of image "Graph" = 0 then
wait 1.5 seconds
else
exit repeat
end if
End Repeat
However the graph is still always fail to load into image "graph".
Please help.
Thanks and best regards