This is kind of what I was thinking. If you put this on the scene it would look at the places input (2-5 in my example) and turn on or off certain text fields based on the decimal selected. Let me know if this could work for you and I can flesh it out. Sorry for the delay.
dim ticker as xpTextObject
dim places as xpTextObject
dim twoplace as xpBaseObject
dim fourplace as xpBaseObject
dim fiveplace as xpBaseObject
self.getObjectByName("DECIMAL SELECT", places)
if places = "2" then
twoplace.visible = true
fourplace.visible = false
fiveplace.visible = false
elseif places = "4" then
twoplace.visible = false
fourplace.visible = true
fiveplace.visible = false
elseif places = "5" then
twoplace.visible = false
fourplace.visible = false
fiveplace.visible = true
end if
#XPression