rust-sciter icon indicating copy to clipboard operation
rust-sciter copied to clipboard

Rust bindings for Sciter

Results 42 rust-sciter issues
Sort by recently updated
recently updated
newest added

i have a demo both tokio_native_tls and async_native_tls will be blocked after set_options. ```rust pub async fn test_tls_client() { let addr = "14.215.177.39:443"; let host = "www.baidu.com"; let socket =...

I have purchased the license for Sciter and compiled the static library, but how does Sciter load the static library in Rust?

question

I'm on Windows 10 64bit. I used `sciter::Window::attach()` to "attach" it to the GameMaker window. Then called `frame.load_html()` and `frame.run_app()`. But the HTML isn't displayed. The GameMaker window freezes until...

in main.rs, ``` struct Handler; impl Handler { fn process_window(&self, Window) -> () { } } impl sciter::EventHandler for Handler { dispatch_script_call! { fn process_window(Window) ; } } ``` in...

question

I tried doing this: ```rust window .set_variable("hello", Value::from("world")) .expect("Could not set variable."); ``` But I don't know how to retrieve the set variable. `Window.this.hello` and `globalThis.hello` both return undefined. Even...

question

take "[minimal](https://github.com/sciter-sdk/rust-sciter/blob/master/examples/minimal.rs)" as an example: `` doesn't work, because "icon.png" isn't found in memory Could give an example to load files from disk. It is helpful to hot-reload

question

I think the native sciter sdk(c++ library) is multiple thread friendly. However, it sucks when I use this rust binding in a multiple thead situation. Currently both `sciter::Window` and `sciter::Host`...

enhancement
help wanted

* [ ] `sciter::Value`: remove indexing (works via a hack now) * [ ] `sciter::Value::isolate` should be `unsafe` * [x] `s2w` : return a single value only, `s2wn` returns value...

enhancement

rust: ```rust impl Frame { fn throw(&self, ex: String) -> Result { Err(ex) } } impl EventHandler for Frame { displatch_script_call! { fn throw(Value); } } ``` js: ```javascript try...

bug
sciter-engine