Questions tagged [sciter]

Sciter is a tool/runtime for creating GUIs using HTML, CSS, and scripts. Unlike many HTML UI tools, Sciter may be used with native code.

Sciter is a tool/runtime for creating GUI applications using HTML, CSS, scripts, and native code. Most standard HTML and CSS features are supported, as well as a few custom extensions.

Sciter apps can run on most systems, including desktop and mobile devices. Its power and flexibility has gained it a long list of users, including many big name companies.

14 questions
3
votes
0 answers

Adding Data Files to PyInstaller Not working

I am trying to bundle a file named home.htm with a executable made using PyInstaller. I use this command : py -3.7 .\pyinstaller\pyinstaller-4.3\pyinstaller.py --hidden-import pkg_resources --windowed --add-binary="sciter32.dll;."…
theindiandev
  • 43
  • 2
  • 7
3
votes
1 answer

Sciter CSS 'flow' attribute browser alternatives

Recently I have been playing around with Sciter, and discovered the incredibly useful flow CSS attribute. The docs have little to say about it, asside from listing it as a Sciter feature, and linking to this article. Obviously, this doesn't work in…
Milo Christiansen
  • 3,204
  • 2
  • 23
  • 36
2
votes
0 answers

How to call golang function in dialog from JS script

I am trying to build a UI using GO and Sciter JS When button is clicked on the Sciter UI need to call a function in GO. Please help as I did not find any documentation on this. Regards, SK
sam kurean
  • 33
  • 3
2
votes
1 answer

How to fit a window to its contents and center it on the screen in Sciter?

When trying out GUI software for the first time, the first thing I want to do is center the window and fit it to its contents. I personally believe this should be as easy to do as possible, and preferably explained in the official…
GirkovArpa
  • 4,427
  • 4
  • 14
  • 43
2
votes
0 answers

Go module replacement directive to replace sciter-sdk with shumatech

I've learned golang a month ago and never have used golang modules, but today I needed it. Initial problem: I want to use sciter-sdk for GUI application. So, I decided to use sciter-sdk. But it is a bug in getting library on go v1.15 My…
ACLzz
  • 21
  • 1
1
vote
0 answers

Trying to compile a Sciter project for the first time in CLion. Continue getting "undefined reference to 'WinMain'"?

As the title says I'm having a difficult time compiling the Hello, World! example from sciter.com. As far as I can tell I have everything linked properly, I made sure that the bit architecture of my DLL's matched that of my project, etc. I have been…
0
votes
1 answer

How to catch "sciter.dll not found" error in Rust

I get this error code thread 'main' panicked at 'error: 'sciter.dll' was not found neither in PATH nor near the current executable. Please verify that Sciter SDK is installed and its binaries (from SDK/bin/64) are available in PATH.',…
0
votes
1 answer

Pass JS function to C++ as function parameter

I want to make async call to C++ native function, but have some problems: when I call native function in async block (in Promise, exactly), it blocks UI thread and no async call is made. I want to pass callback to C++ function and call it. How can I…
0
votes
0 answers

Creating a pointer to a HWND pointer in C++ for creating a child webview

I am using webview.h and trying to create a webview as a child to my application. This is the webview_create function: WEBVIEW_API webview_t webview_create(int debug, void *wnd) { return new webview::webview(debug, wnd); } They are describing my…
Dawg
  • 69
  • 9
0
votes
3 answers

How do I include HTM and CSS files with PyInstaller?

I am trying to package together a sciter project that I have made. In sciter, it uses .htm and .css files. So I'd like to include this into my .exe and not have to include them separately. Here is how I the HTML file is used in the Python code: …
brilam
  • 53
  • 2
  • 11
0
votes
1 answer

Embedding DLL in a compiled C# executable

I am using scitersharp with WinForms and trying to build a single standalone compiled c# executable. It's a simple "Hello World" app which loads an HTML file. Initially after compilation 3 DLLs (sciter.dll, sciter64.dll and SciterSharpWindows.dll)…
GAURAV KUMAR JHA
  • 190
  • 1
  • 11
0
votes
2 answers

Including a shared library in a go build

How can I include an SO file when I build for linux? With windows I simply put the dll in the same folder but that did not work with the linux build. In particular, I am building a go sciter project and need to include the libsciter-gtk-64.so in the…
rawsh
  • 395
  • 5
  • 21
0
votes
2 answers

Embeddable HTML/CSS/script engine C++

I have a C++ Windows native application and I would like to have a HTML engine to display data in the GUI.I found Sciter perfect for this, but it has a not complete css/js support: for example loading bootstrap 4 starting template make the app…
Stefano Piovesan
  • 1,185
  • 3
  • 19
  • 37
-1
votes
1 answer

How to create snap YAML file of program written in golang sciter library?

could you please help me? How to create YAML file for golang application written in language go named golang and sciter library https://sciter.com/ ? I mean how what to write to yaml file to have working snap for snapcraft store? Thanks for any…
Lesna Vevericka
  • 75
  • 1
  • 1
  • 6