I'm just writing a cross-platform solution and need to show some notifiers on the desktop. I want to open a window for this, but I can not get it to have no border and no entry in the taskbar. Maybe I simply missed a parameter or combination or was there something in the documentation? Maybe a stupid question
Code: Select all
If OpenWindow(0, 100, 200, 195, 260, "PureBasic Window", #PB_Window_BorderLess)
Repeat
Event = WaitWindowEvent()
If Event = #PB_Event_CloseWindow ; If the user has pressed on the close button
Quit = 1
EndIf
Until Quit = 1
EndIfKukulkan

