HTML embedded in a MsgBox replacement!
Arguments:
- HTML code/URL
- Title of window
- Whether or not it's just the body
- If it is a URL
- Window width
- Window height
Use example:
#Include <HtmlBox> HTML = ( <style> body { text-align: center; } </style> <a href="http://www.google.com/" >Google</a> <div style="color:#FF0000" >RED TEXT!</div> <div style="color:#00FF00" >GREEN TEXT!</div> <div style="color:#0000FF" >BLUE TEXT!</div> ) HtmlBox(HTML, "Tutorial!", True, False, False, 300, 200) ; HTML code, Title, Put into body, not a URL, width, height HTML = ( <!DOCTYPE HTML> <html> <body> This one has a scrollbar because when you write all the html yourself, it doesn't have the overflow CSS style. </body> </html> ) HtmlBox(HTML, "Tutorial?", False, False, False, 300, 200) ; HTML code, Title, don't put in body, not a URL, width, height HtmlBox("http://www.google.com/", "Tutorial.", False, True, True, 1024, 768) ; URL, Title, don't put in body, it's a URL, width, height ExitApp return
Note that there is a way to fix the outdated render engine shell.explorer uses by default in this thread.