Local Scheme Handler: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
===Example 2=== | ===Example 2=== | ||
<syntaxhighlight lang="lua">http://mta/local/myImage.png</syntaxhighlight> | <syntaxhighlight lang="lua">http://mta/local/assets/myImage.png</syntaxhighlight> | ||
Refers to the file ''myImage.png'' in the current resource | Refers to the file ''assets/myImage.png'' in the current resource | ||
}} | }} | ||
Revision as of 23:56, 19 June 2018
In many cases it is necessary to access files stored on the local disk from browsers.
Scheme format
http://mta/resourceName/file.extension
- resourceName: The resource name, local is a special name for the current resource
- file.extension: The file path within resourceName
You can use this scheme format for loadBrowserURL as well as in HTML files e.g. <img> tags.
This template will be deleted.
Examples
Example 1
http://mta/myResource/assets/myImage.png
Refers to the file assets/myImage.png in a resource named myResource
Example 2
http://mta/local/assets/myImage.png
Refers to the file assets/myImage.png in the current resource