this is what i have tried to do following your previous example...
private var poolSelected: Boolean = false;
public function poolselected():void{
if(pool.selected == true){
poolSelected = 1;
}
else{
poolSelected = 0;
}
}
private function insertHandler():void{
listManager.listProperty(poolSelected);
<mx:RemoteObject id="listManager" destination="ColdFusion"
source="App.src.cfcs.propertyMaintenance" showBusyCursor="true">
<mx:method name="listProperty" result="handleStringResult(event)"
fault="mx.controls.Alert.show(event.fault.faultString)"/>
</mx:RemoteObject>
<mx:CheckBox label="Pool" id="pool" color="#999999" width="160" fontSize="12"
click="poolselected()"/>