I am working on an application that reads and edits XML configuration files for VoIP phones. Some of these XML files contain attributes with periods in their names.
An example: <phone1> <reg.1.user="1234" reg.1.server="192.168.0.1"/> </phone1> Is there any way to "dot down" to these attributes using the E4X capabilities of ActionScript 3? I've tried every syntax I could think of and always get compile errors. I'd really like an easy way to read and modify these attributes. They are not always in the same order so using indices is not an option, I need to access them by name.

