Re: [flexcoders] Label must be a simpler identifier

2010-06-17 Thread Alex Harui
Try a clean and rebuild. Also look for stray punctuation, especially a colon. On 6/16/10 7:51 PM, ilikeflex ilikef...@yahoo.com wrote: Hi I have the following class.. package com.vzw.mpi.rss.bussvalidations { public class BussValidation { public var message:String; public var

Re: [flexcoders] Label must be a simpler identifier

2010-06-17 Thread Oleg Sivokon
This mostly happens when you forget var keyword but you intend to put it. The label must be simple identifier error means that the compiler believed that construction to be a loop label. The error isn't in the code as you show it, but you probably have more of it. Basically, just check the syntax

[flexcoders] Label must be a simpler identifier

2010-06-16 Thread ilikeflex
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