Is there a way to display a html file in a settings' web view like demonstrated in the InAppSettingsKit sample app? I am able to invoke the web view as a child pane. I specified a html file using the key "Filename" (or in case of using the InAppSettingsKit bundle "File") but how do I link the file to the web view? Following the dictionary item in question:
<dict>
<key>File</key>
<string>settings_about.html</string>
<key>IASKViewControllerClass</key>
<string>IASKAppSettingsWebViewController</string>
<key>IASKViewControllerSelector</key>
<string>initWithFile:key:</string>
<key>Title</key>
<string>WebView</string>
<key>Type</key>
<string>PSChildPaneSpecifier</string>
</dict>
And here is a summary of what I have tried so far: I used the Settings.bundle from the mergSettings demo and added the web view dictionary item. Added the file "settings_about.html" to the "en.lproj" folder included with the settings bundle. Added a "en.lproj" folder including the HTML file in LiveCode's standalone application settings, added the file without an enclosing folder. Used an unmodified copy of the Settings.bundle from "InAppSettingsKitSampleApp". Placed the HTML file in ".lproj" folders inside and outside the bundle. Removed all dictionary items from the plist but the one needed for the web view. Ran all tests using .plist as well as .InApp.plist. All tests were in-app only.