Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
set additional properties for the window
#2
you cant do all of that at the same time easily.. If you hide title bar(aka window caption) there is no option to minimize ,maximize ect. also you won't be able to move the window either(least not by mouse dragging).

but here is a few of those options

Code:
Copy      Help
int w
run "$system$\notepad.exe" "" "" "" 0xA00 win("" "Notepad") w
;code for
;1.the title bar is hidden
;; if you do this wont be able to move the window with the mouse
SetWinStyle w WS_CAPTION 2|8
;2.the label is not displayed on the taskbar
_s=""
_s.setwintext(w)
;3.and the transparency of the window is 50%.
;value between 0 and 255
Transparent w 128
;4.After clicking the minimize button, in the lower right corner of the taskbar, a small icon is displayed.


Messages In This Thread
set additional properties for the window - by win - 11-13-2018, 11:30 PM
RE: set additional properties for the window - by Kevin - 11-14-2018, 01:54 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)