WILL SDK for ink v2
Web tutorial: shows a black screen
Most probably you are trying to access tutorials from your filesystem. The browser throws a security exception because the Ink Engine loads local resources.
Solution
The recommended solution is to execute examples in a web environment. You need a simple http server.
In the samples folder you can execute:
python -m SimpleHTTPServer 8080
This is simplest way to start a server without any configuration. Then access it under http://localhost:8080
An alternative solution is to tell the browser to skip security restrictions.
NOTE This solution is not recommended because the modified browser settings could later become a security issue.
Under Mozilla Firefox
Set the security.fileuri.strict_origin_policy parameter to false.
To do this, enter about:config in the address bar, then search for the parameter.
Under Google Chrome
Start the executable with the following parameter:
chrome --allow-file-access-from-files