Quote: "I would like to add a url on an image, is there a function to do this ?"
There's no predefined function but you could write your own. Here's a small example of launching a website from DBPro:
Rem ***** Main Source File *****
sync on : sync rate 60
box_x1 as integer = 220
box_y1 as integer = 240
box_x2 as integer = 400
box_y2 as integer = 280
ink rgb(100, 100, 250), 0
box box_x1, box_y1, box_x2, box_y2
ink rgb(255,255,255), 0
text 230, 250, "adg.devink.co.uk"
text 0, 0, "Click on the box!"
get image 1,box_x1,box_y1,box_x2,box_y2,1
do
cls
sprite 1,box_x1,box_y1,1
if mouseclick() = 1 and mrep=0
mrep=1
if mousex()>sprite x(1) and mousex()<sprite x(1)+sprite width(1)
if mousey() > sprite y(1) and mousey() < sprite y(1)+sprite height(1)
execute file "http://adg.devink.co.uk", "", ""
endif
endif
endif
if mouseclick()=0
mrep=0
endif
sync
loop
Quote: "And if posible a window through which you can see a webpage / banner from web page ?"
For this one I'd look into web containers and BBB Gui. I'm afraid I don't know much more on the subject.