Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Getting SprintPCS Vision pictures

From: cybarite:sympatico:ca at: 6-Sep-2002 17:38

Re: Getting SprintPCS Vision pictures Greg, The problem seems to be that REBOL does not understand that the values form part of the URL for Sprinting. If you surround the url with quotes then force it back to a url you can retrieve your picture. url: "http://pictures.sprintpcs.com:80/i/8844930_468.jpg;jsessionid=aaa-EtKM86LNWl?machineid=2&border=2,255,255,255,1,0,0, 0,0" img: load to-url url view layout [image img] which I guess you could make into: view layout [image load to-url "http://pictures.sprintpcs.com:80/i/8844930_468.jpg;jsessionid=aaa-EtKM86LNWl?machineid=2&border=2,255,255,255,1,0,0,0,0"]