<?xml version="1.0" encoding="UTF-8"?>

<adat:task 
	xmlns:adat="http://ns.adobe.com/devicecentral/task/" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://ns.adobe.com/devicecentral/task/ adat.xsd "
	
	guid="5cff2c68-96b3-11dc-8314-0800200c9a68" 
	version="1">
	<general>
		<title value="$$$/SendTo/Title/CopyFileTo=Copy File To"/>
		<menuItem  value="$$$/SendTo/Menu=Copy File To..."/>
		<toolTip value="$$$/SendTo/ToolTip=Copy file to"/>
		<script path="FileCopy.jsx"/>
		<icon path="copy.png"/>
		<toolbar value="true" />
		<localization path="CopyFile.zstrings" />
	</general>
	<dialog height="253" width="635" minWidth="635" minHeight="160">
		<container layout="horizontal" sizex="scale">
			<staticText alignment="right" width="100">
				<label value="$$$/SendTo/UI/Destination=Copy To:" />
			</staticText>
			<textField id="target" width="390" sizex="scale"/>
			<button onClick="doSelectTargetFolder" width="110" sizex="right">
				<label value="$$$/SendTo/UI/Button/Browse=Browse..." />
			</button>
		</container>
		<container layout="horizontal" sizex="scale">
			<fileList id="files" onSelectionChanged="onSelectionChanged" width="490" height="120" sizex="scale" icon="path">
				<columns>
					<column dataField="filename" columnText="$$$/SendTo/UI/FilesToCopy=Files to Copy" width="120" />
					<column dataField="path" columnText="$$$/SendTo/UI/Path=Path" width="330" />
				</columns>
			</fileList>
			<container layout="vertical" sizex="right">
				<button onClick="doAddFile" width="110">
					<label value="$$$/SendTo/UI/AddFile=Add..." />
				</button>
				<button onClick="doRemoveFile" width="110" id="btnRemove">
					<label value="$$$/SendTo/UI/RemoveFile=Remove" />
				</button>
			</container>
		</container>
	</dialog>
</adat:task>

	