I’m opening a locally saved html file using the following line:
native.showWebPopup(0, 0, display.contentWidth, display.contentHeight, "helpHtml-"..settings.lang..".html", { baseUrl = system.ResourceDirectory, hasBackground=false, autoCancel=false} )
Then, in the file, I want to open the “logo.png” picture that resides in the “images” folder:
\<img src="images/logo.png" width="189" height="101" alt="Logo" /\>
It gets opened in the browser, but not on the device.
I assume something is probably wrong with referencing the correct “root” folder - can somebody please help me?