[go-nuts] Re: Shiny examples don't work on macOS Sierra 10.12.4

2017-04-01 Thread Dmitry Kravchenko
OK, thanks. The workaround mentioned in that thread is to use go run -ldflags -s -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegro

[go-nuts] Re: Shiny examples don't work on macOS Sierra 10.12.4

2017-04-01 Thread James Bardin
See https://golang.org/issue/19734 On Saturday, April 1, 2017 at 1:39:36 PM UTC-4, Dmitry Kravchenko wrote: > > After update to macOS Sierra 10.12.4 Shiny examples don't work anymore. > > iMac-Dmitry:~ dmitrykravchenko$ go env > > GOARCH="amd64" > > GOBIN="/Users/dmitrykravchenko/gowsp/bin" > > G

[go-nuts] Re: shiny: get mouse position relative to window

2017-01-16 Thread as . utf8
I haven't seen this either, the solution depends on what platform you're trying to support. I have a package that does this, for Win32. If you're using Windows, you use the the Rect() or ClientAbs() in my package to get the position of the window (or the client area). https://godoc.org/github

Re: [go-nuts] Re: Shiny

2016-08-17 Thread Nigel Tao
On Wed, Aug 17, 2016 at 2:56 AM, wrote: > It is also slightly unclear what version of the language it is built for. I > think they have been advancing with Go, and have not made efforts towards > backwards compatibility, and I had to make several hand-edits after > updating, to get it to compile

Re: [go-nuts] Re: Shiny

2016-08-16 Thread howardcshaw
On Tuesday, August 16, 2016 at 12:19:13 PM UTC-5, Dave MacFarlane wrote: > > What do you mean "no actual text editors"? By my count of the > importers that GoDoc knows about 3 out of 8 of the projects that are > using it are text editor apps. > > - Dave > Go to exp/shiny/examples/textedit. go

Re: [go-nuts] Re: Shiny

2016-08-16 Thread Dave MacFarlane
On Tue, Aug 16, 2016 at 12:56 PM, wrote: > No buttons (though they aren't hard to implement from a label), no radio > boxes, no built-in scrollbars that I could find, no actual text editors, no > lookups/drop-downs/choosers, no listboxes. And certainly nothing akin to a > grid/spreadsheet control

[go-nuts] Re: Shiny

2016-08-16 Thread howardcshaw
I've been working with it lately. I got fairly far in writing a drop-in visualizer for my algorithms, but I ran into a snag when I went to add dynamically generated editing for parameter values. The widget.NewText(), in spite of being used in an Example called TextEdit, does not appear to actua