Here is problematic plugin
function OnPluginInstall ()
win = GetPluginID ()
lbar = "left_bar_img" --left bar id
TextRectangle (155, 0, 0, 0, 0, 0x000000, 0, 0x000000, 1)
WindowCreate (win, 0, 0, 155, 600, 2, 1, ColourNameToRGB("black"))
WindowLoadImage(win, lbar, "./EyeCandy/left_bar.bmp")
WindowDrawImage (win, lbar, 0, 0, 0, 0, 1)
WindowShow (win, true)
end -- OnPluginInstall
As you can see, i want to make fancy left bar for various miniwindows. The problem is in background image. I can't make miniwindow with flag 1 shown underneath TextRectangle border. Is it possible?
function OnPluginInstall ()
win = GetPluginID ()
lbar = "left_bar_img" --left bar id
TextRectangle (155, 0, 0, 0, 0, 0x000000, 0, 0x000000, 1)
WindowCreate (win, 0, 0, 155, 600, 2, 1, ColourNameToRGB("black"))
WindowLoadImage(win, lbar, "./EyeCandy/left_bar.bmp")
WindowDrawImage (win, lbar, 0, 0, 0, 0, 1)
WindowShow (win, true)
end -- OnPluginInstall
As you can see, i want to make fancy left bar for various miniwindows. The problem is in background image. I can't make miniwindow with flag 1 shown underneath TextRectangle border. Is it possible?