Entraides et échanges autour de la technologie Scol - Informations and exchanges on the Scol technology
Vous pouvez changer la langue de l'interface une fois inscrit - You can change the language once registered
You are not logged in.
Pages: 1
where would i find the code for creating a borderless window, like the one that appears on os3d editor startup....I've been searching through the os3deditor .pkg files but haven't found it
thx!
-h
Offline
See flags in _CRwindow : WN_NOBORDER
http://www.scolring.org/files/doc_html/_crwindow.html
Offline
See flags in _CRwindow : WN_NOBORDER
http://www.scolring.org/files/doc_html/_crwindow.html
thx, but I've used it and it doesn't appear to work...
//code
let _CRwindow _channel nil 0 450 800 150 WN_NOBORDER "Loading window" -> log_window in
//code
does the flag fail if the window does not have a parent? It is created before the player mainwindow is created, so I don't know what would be its parent.
Offline
You should add other flags, like WN_NORMAL for example
let _CRwindow _channel nil 0 450 800 150 WN_NOBORDER|WN_NORMAL "Loading window" -> log_window in
Without another flag, the window is already borderless
Offline
You should add other flags, like WN_NORMAL for example
let _CRwindow _channel nil 0 450 800 150 WN_NOBORDER|WN_NORMAL "Loading window" -> log_window in
Without another flag, the window is already borderless
I just tried this, still not working....respond at your leisure.
-h
Offline
I will try creating a hidden parent window and see if that works
Last edited by hebdemnobad (21-Oct-2014 21:34:26)
Offline
yes you can create a windows without borders even if there is no parent (a hidden parent won't work, this will hide the child windows too)
let _CRwindow _channel nil 0 450 800 150 WN_NOBORDER|WN_NOCAPTION "Loading window" -> log_window in
but you will loose all other windows buttons and title
Offline
yes you can create a windows without borders even if there is no parent (a hidden parent won't work, this will hide the child windows too)
let _CRwindow _channel nil 0 450 800 150 WN_NOBORDER|WN_NOCAPTION "Loading window" -> log_window in
but you will loose all other windows buttons and title
Thx I'll try that
Offline
thx arkeon that works. for when i forget, "how to make a borderless window"
Offline
Pages: 1