window=love.windows.createWindow(x, y, w, h)
normalWindow = love.windows.getMasterWindow()
window:setPosition()
window:setMode()
love.windows.setActive(window)
window:setFrameless()
love.windows.setActiveWindow(window) -- make drawing draw to this window from now on
window:setActive() -- same as above
window:setFocused() -- brings window to front and focuses it
When SDL 2.0 gets released and LÖVE actually adopts it, these features will probably get implemented. The current SDL can't do it or it's really tedious to use.
Oh, and the issue tracker is the place where you can submit suggestions and such.
I was actually about to post requesting the same thing!
Is there a way to create a workaround that does this? Perhaps it could use threads or the application can open new instances of Love internally?
Any thoughts from other developers on this?