Jump to content

getCursorPosition() problem ?


Miika

Recommended Posts

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
  
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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...