Weblink

Blitz3D Forums/Blitz3D Beginners Area/Weblink

Farflame(Posted 2008) [#1]
Hmm simple one here. Isn't there a command in Blitz3D that sends the user to a webpage when he clicks on a certain piece of text - i.e a hyperlink sort of feature? If not, how can I go about programming that myself?


GfK(Posted 2008) [#2]
ExecFile("http://www.blitzbasic.com")



Dabhand(Posted 2008) [#3]
You can also open the users default email application using something like this:-

ExecFile(\"mailto:someone@...") - Bloody formatting, ignore the slashes in the string.

Where 'someone@...' will most likely be dropped in the 'To' field of the clients app! Smashing


Farflame(Posted 2008) [#4]
Ah that's the fella, thanks :)


DheDarkhCustard(Posted 2008) [#5]
This helped me too thanks guys.