Re: [Factor-talk] Some UI questions

2014-12-20 Thread John Benediktsson
Hi Mark, 1) There are several ways to accomplish this, the simple answer is: "Hello, world" { 0 2 } "Testing" open-window Longer answer, you can investigate ui.gadgets.grid and ui.gadgets.corners for other layouts that allow more control, but a border that expands in one direction

Re: [Factor-talk] Some UI questions

2014-12-20 Thread Mark Green
Hi, Thanks very much for the help. This is really interesting stuff. I am actually using a grid-layout already, it's just that when I place a checkbox in the grid, it is hard to the left of the assigned grid space - would adding a border help? Regarding drop-button, what I want to do is to create

Re: [Factor-talk] Some UI questions

2014-12-20 Thread John Benediktsson
Hi Mark, I forked your project on Github and made some fixes so the drop menu works now for me. https://github.com/hyphz/fr8x-editor/pull/1 Best, John. On Sat, Dec 20, 2014 at 3:16 PM, Mark Green wrote: > > Hi, > > Thanks very much for the help. This is really interesting stuff. I am > act