<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Google Nexus 5</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>360</PageWidth>
	<PageHeight>640</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<LanguageCode>en</LanguageCode>
	<DisplayMode>standalone</DisplayMode>
	<ServiceWorker>Offline page</ServiceWorker>
	<ThemeColor>#000000</ThemeColor>
	<PwaScope>/</PwaScope>
	<MobileOSTypes>[AndroidOS,iOS,WindowsPhoneOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>True</TitleBar>
	<Sizeable>True</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>True</MinimizeBtn>
	<SystemMenu>True</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>True</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<Components>
		<FunctionList name="Subroutines">
			<Components>
				<Function name="success">
					<Code>ConsoleLog [mydata]</Code>
					<Params>[mydata]|STRING|</Params>
				</Function>
				<Function name="error">
					<Code>ConsoleLog [mydata]</Code>
					<Params>[mydata]|STRING|</Params>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<PushButton id="PushButton1">
							<left>30px</left>
							<top>30px</top>
							<width>300px</width>
							<height>60px</height>
							<caption>Click me</caption>
							<click>BeginJS
data = [
  { name: &quot;John&quot;, age: 25 },
  { name: &quot;Mary&quot;, age: 30 },
  { name: &quot;Katy&quot;, age: 32 },
  { name: &quot;Andrew&quot;, age: 23 },
  { name: &quot;Lara&quot;, age: 53 },
  { name: &quot;David&quot;, age: 35 }
];

// Extract all &quot;name&quot; values into a new array
$App.namesArray = data.map(function(obj) {
  return obj.name;
});
EndJS
</click>
						</PushButton>
						<Listbox id="Listbox1">
							<left>30px</left>
							<top>110px</top>
							<width>300px</width>
							<height>500px</height>
							<items>[namesArray]</items>
							<prop_name>kk</prop_name>
							<variable>[value]</variable>
							<multi_select>False</multi_select>
						</Listbox>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MasterPage"/>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>360px</width>
							<height>640px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
