How to Set a Vector?

No matter what I try I can’t get the Setter function to work on a vector.<object>

Mean while the getter works fine
Example as below

public function get frameData() :Vector.<Object>  
{ 
 trace("getter");
 return tData._frameData;
}

public function set frameData(nuFramDat:Vector.<Object> ):void
{ 
 tData._frameData = nuFramDat; 
 trace("Never Displayed Setter");
}

the code runs fine without the set function, but not without the get.
I can think up a workaround but I’d rather not :slight_smile: