﻿<?xml version="1.0"?>
<flash_encoder version="1.0">
	<encoder_definition dialogID="Dialog" category="Basic Types" name="Boolean">
		<properties>
			<property id="trueStrings" default="yes、YES、Yes、y、T、t、true、True、TRUE"/> 
			<property id="falseStrings" default="no、NO、No、n、F、f、false、False、FALSE"/>
		</properties>
		<dialog id="Dialog" title="Boolean 編碼器" buttons="accept, cancel">
			<grid>		
				<columns>
					<column/> 
					<column/>
				</columns>
	
				<row>
					<label value="代表 true 的字串:  " control="trueStrings"/> 
					<textbox id="trueStrings" width="175"/>
				</row>
				<row>
					<label value="代表 false 的字串:  " control="falseStrings"/> 
					<textbox id="falseStrings" width="175"/>
				</row>
			</grid>	
		</dialog>
		<actionscript class="mx.data.encoders.Bool"/>
	</encoder_definition>
</flash_encoder>
