pravic

Results 264 comments of pravic

Why can't we support both, rice and embed?

OS? ``` $ go version go version go1.7.5 windows/amd64 $ gcc --version gcc (x86_64-win32-seh-rev0, Built by MinGW-W64 project) 5.3.0 $ go get -x github.com/sciter-sdk/go-sciter ... $ cd %GOPATH%\src\github.com\sciter-sdk\go-sciter\examples\simple $ go...

> GOARCH=386 I haven't tried cross-compilation yet.

The [Inspector](https://github.com/c-smile/sciter-sdk/tree/master/bin.osx/inspector.app/Contents/Resources) app from Sciter SDK looks as if it contains icon.

Does Inspector.app have a valid icon under your MacOS? If yes, ask Andrew @c-smile how Inspector was signed.

Because that `native-textarea` behavior is just an example and it is included [explicitly in sciter.exe](https://github.com/c-smile/sciter-sdk/blob/2c1b9c8146acf04ee2ebb02d19fa6094d4bbb7a3/demos/sciter/sciter.vcxproj#L678-L683). If you want to use [any of them](https://github.com/c-smile/sciter-sdk/tree/master/include/behaviors), you will need to port them (or...

There is a tutorial, but for C++: https://sciter.com/using-native-child-windows-in-sciter/ As for Go.. You'd need to create a corresponding `EventHandler` responsible for, say, native window creation, and attach it to the `sciter.CallbackHandler.Behaviors`...

https://github.com/sciter-sdk/go-sciter/blob/master/examples/handlers/handlers.go is the closest example. I could create a behavior example, but can't do it right now. Try to dig it on your own: reread the mentioned article, look on...