<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>600</PageWidth>
	<PageHeight>400</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>
	<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>
	<startup>BeginJS
 $App.jsonData = &apos;[{&quot;name&quot;: &quot;joseph&quot;,&quot;age&quot;: &quot;29&quot;,&quot;number&quot;: &quot;8427&quot;,&quot;nation&quot;: &quot;franch&quot;},{&quot;name&quot;: &quot;younes&quot;,&quot;age&quot;: &quot;23&quot;,&quot;number&quot;: &quot;609&quot;,&quot;nation&quot;: &quot;german&quot;}]&apos;;
EndJS
ParseJSON [jsonData] [data]</startup>
	<Components>
		<FunctionList name="Subroutines"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<TextInput id="TextInput1">
							<left>40px</left>
							<top>40px</top>
							<width>168px</width>
							<height>40px</height>
							<variable>[textToSearch]</variable>
							<place_holder>Name</place_holder>
						</TextInput>
						<PushButton id="PushButton1">
							<left>216px</left>
							<top>40px</top>
							<width>88px</width>
							<height>40px</height>
							<caption>Search</caption>
							<click>SetVar [name] &quot;&quot;
SetVar [age] &quot;&quot;
SetVar [number] &quot;&quot;
SetVar [nation] &quot;&quot;
ArrayLen [data] [total]
SetVar [total] [total]-1
Loop 0 [total] [n]
  StrSearch &quot;[textToSearch]&quot; &quot;[data([n]).name]&quot; [position]
  If [position] &gt; -1
     SetVar [name] [data([n]).name]
     SetVar [age] [data([n]).age]
     SetVar [number] [data([n]).number]
     SetVar [nation] [data([n]).nation]
     ExitLoop
  EndIf
EndLoop</click>
						</PushButton>
						<Container id="Container1">
							<left>40px</left>
							<top>96px</top>
							<width>264px</width>
							<height>104px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;padding-left:10px;padding-top:10px</style>
							<html>&lt;b&gt;Name:&lt;/b&gt; [name]&lt;br&gt;
&lt;b&gt;Age:&lt;/b&gt; [age]&lt;br&gt;
&lt;b&gt;Number:&lt;/b&gt; [number]&lt;br&gt;
&lt;b&gt;Nation:&lt;/b&gt; [nation]</html>
						</Container>
					</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>600px</width>
							<height>400px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
