Kodi Community Forum
value into numeric dialog ? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: value into numeric dialog ? (/showthread.php?tid=24192)



value into numeric dialog ? - BigBellyBilly - 2007-01-11

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