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"] -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
