Kodi Community Forum

Full Version: value into numeric dialog ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know if how to pass a value into the numeric dialog (for any of the kbTypes available) ?

Example of numeric entry using the IP dialog:
Code:
        kbType = 3
        d = xbmcgui.Dialog()
        value = d.numeric(kbType, "my title")

The normal keyboard allows you to pass a value in:
Code:
        keyboard = xbmc.Keyboard(currentValue, "my title")

Can it be done ?

cheers
BBB