Miika Posted April 2, 2016 Share Posted April 2, 2016 Hi, I have a problem with getCursorPosition. I'm trying to make dx button and when i move my mouse to rectangle, it makes another white rectangle top of it. Nothing happens when i move my mouse to rectangle? Part of code: addEventHandler("onClientRender", root, function() if enabled == true then local height = 15 local lenght2 = dxGetTextWidth("Buy weapon", 1, "bankgothic") button = dxDrawOutlinedRectangle(1, tocolor(255, 165, 0, 170), x/2-200, y/2+150, 400, 30, tocolor(255, 255, 255, 130), false) dxDrawOutlinedText(tocolor(255, 165, 0, 255), "Buy weapon", x/2-lenght2/2, y/2+150, 200, 20, tocolor(0, 0, 0, 255), 1, "bankgothic", nil, nil, nil, nil, true) sx, sy = getCursorPosition() if (sx >=x/2-200 and sx <=x/2+200) and (sy >=y/2+150 and sy <=y/2+180) then dxDrawRectangle(x/2-200, y/2+150, 400, 30, tocolor(255, 255, 255, 80), true) end end end ) No any errors in debugscript. Link to comment
OfficialLive Posted April 2, 2016 Share Posted April 2, 2016 local screenX, screenY = guiGetScreenSize(); addEventHandler("onClientRender", root, function() if enabled == true then local height = 15 local lenght2 = dxGetTextWidth("Buy weapon", 1, "bankgothic") button = dxDrawOutlinedRectangle(1, tocolor(255, 165, 0, 170), x/2-200, y/2+150, 400, 30, tocolor(255, 255, 255, 130), false) dxDrawOutlinedText(tocolor(255, 165, 0, 255), "Buy weapon", x/2-lenght2/2, y/2+150, 200, 20, tocolor(0, 0, 0, 255), 1, "bankgothic", nil, nil, nil, nil, true) sx, sy = getCursorPosition() sx, sy = sx * screenX, sy * screenY; if (sx >=x/2-200 and sx <=x/2+200) and (sy >=y/2+150 and sy <=y/2+180) then dxDrawRectangle(x/2-200, y/2+150, 400, 30, tocolor(255, 255, 255, 80), true) end end end ) Link to comment
Miika Posted April 2, 2016 Author Share Posted April 2, 2016 sx, sy = sx * screenX, sy * screenY; Thank you! That fixed my problem, now it works perfectly. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now