ID:155325
 
Is it possible to get images from web Like:
mob/obj
Title
<img src="Some url" width = ".." height = "..">

is it possible ? or some other code might do the work ?
It's possible, but that isn't the way you're going to do it.

src << output( "<img src='url'>" , "output" )


Also, you're defining your title screen as a mob.. under a obj path.
In response to Neimo
no i wanna make diff images to be placed on map
not the output.....
In response to Kushagra
I gave you an example how to do it one way, I didn't provide the snippet for you.
Why do that for a Title Screen? Just download the image and make it an object on the map. If it's just going to be static, don't bother with trying to pull it from the internet. That's like putting Square wheels on your car. You Might be able to roll with it, it'll be very impractical.
Alright, use world.Export([web address with image]) and then use icon() on what world.Export in the "CONTENTS" index of the list world.Export() returns. Sounds confusing right now, I know. Here's an example:

mob
verb
GetImage()
var/alist[] = world.Export("http://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Upload_free_image_notext.svg/100px-Upload_free_image_notext.svg.png")
//^ get a list of information from the website. CONTENTS will return a file.
if(!alist)
alert(src, "Failed.")
return
else
var/icon/ICON = icon(alist["CONTENT"])//Put the file into an icon, this is not necessary
//One could always just put 'src<<ftp(alist["CONTENT"])' here.
src<<ftp(ICON)//save it somewhere
In response to ExPixel
Thnx Expixel :D this might help