Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要添加一个下拉菜单来选择分钟。我已经尝试通过 FLA 中的组件参数和 XML。当我给出值 00,01..etc 时,它们被视为 0,1。但我需要 00,01。 。ETC。怎么可能。在此先感谢。
我会假设他们被视为Numbers,我的建议是:
Number
var numAsString:String = myNumber.toString(); if (numAsString.length<2) {numAsString = "0"+numAsString;}
这应该迫使它以您想要的格式显示。parseInt(numAsString)如果您需要进行任何操作,请务必使用。
parseInt(numAsString)