c-smile/sciter-js-sdk

Is there a way to describe a window as "AlwaysOnTop"?

gbraad opened this issue · 6 comments

I made a simple desktop clock that is hovering over other windows. However, when clicked on a window that would overlap, it disappear according to a lower z-order. Is there a way to describe the window as "AlwaysOnTop" ?

image

I have tried this, but didnt have the desired effect. Or is the following not possible?

<html window-isTopmost="true">

<script>
   Window.this.isTopmost = true;
</script>

Is there documentation that describes what is and isn't possible from the <html window-...> tag?

The issue is resolved, but the naming isAlwaysTopmost would have made more sense, plus the difference what can and can not be in the html window definition.