Hi I have the following class..
package com.vzw.mpi.rss.bussvalidations
{
public class BussValidation
{
public var message:String;
public var isError:Boolean;
}
}
when i try to do something like this
var object:BussValidation = new BussValidation();
object.message = "Error Number 1" ; //any string
i get the error
"Label must be a simpler identifier"
Do anybody no why is this happening???
Thanks
ilikeflex

