I continue getting the following error:
Expecting identifier before left bracket
For the following line below.
Any ideas on how to solve this?
public var selectedEvents:[] = [];
If you're trying to create an array, it's public var selectedEvents:Array = []
.