[Factor-talk] Include resources in a deployed application

2013-01-03 Thread Samuel Proulx
Hi, I've been trying to deploy an application, but I can't figure out how to include image files to my program. MAIN-WINDOW: test { { title Test } } vocab:x/test.png image-gadget gadgets ; I read that I need to include them in the resources.txt file. In the previous example, I would need to

Re: [Factor-talk] Include resources in a deployed application

2013-01-03 Thread John Benediktsson
I think for your example you would have a resources.txt in your x vocabulary directory (e.g., work/x/resources.txt). In it would be a single line with test.png. Does that work? On Thu, Jan 3, 2013 at 2:02 PM, Samuel Proulx proulxsam...@gmail.comwrote: Hi, I've been trying to deploy an

Re: [Factor-talk] Include resources in a deployed application

2013-01-03 Thread Jon Harper
Are you using GNU/linux ? If so, you might be experiencing this issue: https://github.com/slavapestov/factor/issues/678 Regards, Jon Jon On Thu, Jan 3, 2013 at 11:07 PM, John Benediktsson mrj...@gmail.com wrote: I think for your example you would have a resources.txt in your x vocabulary

[Factor-talk] Another cool project

2013-01-03 Thread Leonard P
Another cool project would be to redo Minecraft in Factor. - Leonard -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with

Re: [Factor-talk] Include resources in a deployed application

2013-01-03 Thread Jon Harper
I don't remember exactly, but I think you need to create another vocab that is not in a subfolder of the vocab you are deploying, put the resources in there with a resources.txt file. I guess you also have to USE: this new vocab from your main vocab. Or you could apply the patch in the second