Hello
My problem is that the notification image is behind the login background for some reason
(if login backround is destroyed)
but if login background is visible then it looks like this
here's the code
addEvent("addNotification",true)
addEventHandler("addNotification",getRootElement(),
function(text, typ)
text = string.gsub(text,"#%x%x%x%x%x%x","")
local num = 0
if text == "" or text == nil or not typ then
return
else
for i = 0, #message+1 do
if message[num] then
num = num+1
else
message[num] = {}
message[num].text = text
message[num].val = true
if typ == 1 then
message[num].filepath = "success.png"
elseif typ == 2 then
message[num].filepath = "error.png"
elseif typ == 3 then
message[num].filepath = "info.png"
elseif typ == 4 then
message[num].filepath = "warning.png"
end
setTimer(notifyremove,5000,1,num)
end
end
end
end)
--
--
--
function renderNotifications()
for id, v in pairs(message) do
if v.val == true then
dxDrawImageSection(x-dxGetTextWidth(v.text, 1, "default-bold")-50, 35*id, dxGetTextWidth(v.text, 1, "default-bold")+50, 32, 0, 0, dxGetTextWidth(v.text, 1, "default-bold")+50, 32, v.filepath)
dxDrawText(v.text,x-dxGetTextWidth(v.text,1,"default-bold")-5, 9+35*id, dxGetTextWidth(v.text, 1, "default-bold"), 32, tocolor(255,255,255,255), 1, "default-bold", "left", "top", false, false ,true, true)
end
end
end