How to Read HTML files?

Blitz3D Forums/Blitz3D Beginners Area/How to Read HTML files?

xmlspy(Posted 2003) [#1]
.


WolRon(Posted 2003) [#2]
Have you seen the AppTitle command?

Read in the html file into a string.
Search for the string "<title>" using the INSTR command.
Search for the string "</title>" using the INSTR command.
Copy the bytes between the first and second INSTR's into a variable.
Set AppTitle with that variable.


xmlspy(Posted 2003) [#3]
.


eBusiness(Posted 2003) [#4]
Can't somebody write a browser for me? I really need my own browser, so I would like it a lot if somebody came up with such one for me.


Kevin_(Posted 2003) [#5]
I am working on a new browser routine but its not complete yet. It only supports simple HTML tags and its very buggy at present.

I'll put it in the code archives when its finished.

Alternatively, BlitzPlus has an HTML view gadget built in so this could solve your problem.

Regards