Reply To: Patch Name to uiCDLabel

Home Forums General Programming Patch Name to uiCDLabel Reply To: Patch Name to uiCDLabel

#13072
atom
Keymaster
    • Topics: 159
    • Replies: 2945
    • Total: 3104
    • ★★★★★

    it’s like any other component, just set it’s property, if your LCD Label is named “lcd” and you want to to display “myText”

    l = panel:getComponent("lcd")
    if l ~= nil then 
         l:setProperty ("uiLabelText", "myText", false) 
    end
    
    Ctrlr