![]() |
Murl Engine Lua Addon API
Version 1.0 beta
|
The IWebControl interface.
Open a url in the system's default browser.
Boolean OpenUrlInSystemBrowser(String url)
url | The url string to open. |
Create a url-request object.
Murl.IUrlRequest CreateUrlRequest()
Destroy a url-request object.
Murl.IUrlRequest DestroyUrlRequest(Murl.IUrlRequest urlRequest)
urlRequest | A reference to the url-request object to destroy. After destruction the pointer is set to null. |
Create a e-mail object.
Murl.IEMail CreateEMail(String subject, String message)
subject | The subject string for the e-mail object. |
message | The message string for the e-mail object. |
Create a e-mail object.
Murl.IEMail CreateEMail(String subject, String message, String recipientAddress)
subject | The subject string for the e-mail object. |
message | The message string for the e-mail object. |
recipientAddress | The recipient address string for the e-mail object. |
Destroy a e-mail object.
Murl.IEMail DestroyEMail(Murl.IEMail eMail)
A reference to the e-mail object to destroy. After destruction the pointer is set to null. |