Jump to content

Get label text end x


drk

Recommended Posts

Posted (edited)
function fLabelGetPositionWithTextLength( uLabel, bRelative, sFont, nScale ) 
    if isElement( uLabel ) then 
        local nX, nY = guiGetPosition( uLabel, bRelative ) 
        return nX + dxGetTextWidth( guiGetText( uLabel ), nScale or 1.0, sFont ), nY 
    end 
    return false 
end 

It?

  
function fLabelGetPositionWithTextLength( uLabel, bRelative ) 
    if isElement( uLabel ) then 
        local nX, nY = guiGetPosition( uLabel, bRelative ) 
        return nX + guiLabelGetTextExtent( uLabel ), nY 
    end 
    return false 
end 
  

Updated.

You mean position label + text length?

Edited by Guest
Posted

I'm trying this:

x = guiLabelGetTextExtent(uLabel) + 0.09 
local utLabel = guiCreateLabel ( x, aY, aW + w, aH, cap, aRelative, aParent ) 

But when I add this the text don't appear anymore, tried 0.01, 0.05 too.

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