<?xml version="1.0" encoding="UTF-8" ?>
<galleryMaker>
	<galleryInfo>
		<galleryName>Scrapbook</galleryName>
		<galleryDescription>"$$$/flashGalleries/scrapbook/description=Display your photos on scrapbook pages. Turn the page by the corner to navigate through the book."</galleryDescription>
		<creator company="Adobe" designer="Amy Casillas and Wayne Jiang" />
		<category>Interactive</category>
	</galleryInfo>
	<sizes>
		<size name="medium" width="381" height="286" />
	</sizes>
	<mx:application xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*" backgroundcolor="#FFFFFF">
	<!-- Models -->
		<mx:model id="appearance">
	 		<pageOptions>
					<showCaptions>true</showCaptions> 
			</pageOptions>
		</mx:model>
		<mx:model id="metadata">
			<pageTitle>"$$$/flashGalleries/pageTitle/defaultTitle=My Photos"</pageTitle>
			<pageSubtitle> </pageSubtitle>
			<emailAddress>someone@somewhere.net</emailAddress>	
			<finalPage>"$$$/flashGalleries/finalPage/defaultEnd=The End"</finalPage>
		</mx:model>		
	<!-- Views -->
		<mx:vbox>
			<mx:vbox verticalalign="middle">
				<mx:label text="$$$/flashGalleries/pageTitle/label=Title:" />
				<mx:textinput id="titleView" width="143" editable="true" maxchars="50" />			
			</mx:vbox>
			<mx:vbox verticalalign="middle">
				<mx:label text="$$$/flashGalleries/pageSubTitle/label=Subtitle:" />
				<mx:textinput id="subtitleView" width="143" editable="true" maxchars="50" />
			</mx:vbox>
			<mx:vbox verticalalign="middle">
				<mx:label text="$$$/flashGalleries/authorEmail/label=Email Address:" />
				<mx:textinput id="emailAddressView" width="143" editable="true" maxchars="50" />
			</mx:vbox>
			<mx:vbox verticalalign="middle">
				<mx:label text="$$$/flashGalleries/finalPage/label=Ending Page Text:" />
				<mx:textinput id="endPageView" width="143" editable="true" maxchars="60" />
			</mx:vbox>
			<mx:vbox verticalalign="middle" pse:unless="ja_jp" >
				<mx:checkbox id="showCaptionsView" label="$$$/flashGalleries/showCaptions/label=Show Photo Captions" />
			</mx:vbox>
		</mx:vbox>
		<!-- Bindings -->
		<mx:binding source="titleView.text" destination="metadata.pageTitle" />
		<mx:binding source="metadata.pageTitle" destination="titleView.text" />
		<mx:binding source="subtitleView.text" destination="metadata.pageSubtitle" />
		<mx:binding source="metadata.pageSubtitle" destination="subtitleView.text" />
		<mx:binding source="emailAddressView.text" destination="metadata.emailAddress" />
		<mx:binding source="metadata.emailAddress" destination="emailAddressView.text" />
		<mx:binding source="endPageView.text" destination="metadata.finalPage" />
		<mx:binding source="metadata.finalPage" destination="endPageView.text" />
		<mx:binding source="showCaptionsView.selected" destination="appearance.pageOptions.showCaptions" pse:unless="ja_jp" />
		<mx:binding source="appearance.pageOptions.showCaptions" destination="showCaptionsView.selected" pse:unless="ja_jp" />
	</mx:application>
</galleryMaker>