Fuse version : 0.20.2 (build 6524)
O/S : Windows 8.1
I find bug of Image file resource.
If I writed code like this
<App>
<StackPanel>
<Image File="{imagePath}" />
</StackPanel>
</App>
No error.
But if I writed code like this
<App>
<JavaScript>
var Observable = require("FuseJS/Observable")
var imagePath = Observable("Assets/black.png")
module.exports = {
imagePath: imagePath
};
</JavaScript>
<StackPanel>
<Image File="{imagePath}" />
</StackPanel>
</App>
I will see erroe message like this
"Could not find file ‘C:\Program Files(x86)\Sublime Text 3\Assets\balck.png’. Please see the Fuse Monitor (Cmd/Ctrl+M) for details.
MainView.ux exist ‘D:\App\BugReport’.