Hello,
I currently test node-webkit to handle an HTML5 app Desktop.
I first did these tests directly on Chrome, as a packaged app, then moved to node-webkit.
My app works out of the box by simply getting a package.json file instead of manifest.json.
Thanks to node-webkit (;-)
My app is working with two behaviour:
-- The first is by using D&D the HTML5 way.
-- The second would be by starting nw.exe with arguments (pathes to differents files).
I get this pathes by using gui.App.argv.
But for the moment I don't know to get HTML5 Files out of these arguments in order to use the same code as for my Drop event.
My drop event handles an Array of Files as given by evt.dataTransfer.files.
I should be missing something but I don't see a way to build an Array of File from my arguments.
Your advice and comments would be appreciated !
Sincerly,
Guy