Using this code:
results = NetworkInfo.networkInfo.findInterfaces();
for (var i:int =0; i<results.length; i++) {
ethName = ethName + results[i].name
}
I get this result:
{E9742B69-3B80-471A-AF41-B38753474834}
I thought I'd get either the hardware information for the interface or the name. What is this? Anyone have a similar result?
Thanks!