I have successfully created a miniwindow but I don't see an option to make it a docked window. Is there a way to do this?
function init()
local width = GetInfo(281) -- main window width
local height = GetInfo(280) -- main window height
WindowCreate(
"chatwin",
0, 0, width, 150, -- left, top, width, height=150px
2,
2,
0x000000
)
-- Draw a border so you can SEE it
WindowRectOp("chatwin", miniwin.rect_frame, 0, 0, 0, 0, 0x777777)
-- Force a repaint
WindowShow("chatwin", true)
end