<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Desktop</DesignDeviceName>
	<Variables>[ListBox]</Variables>
	<VariablesScanned>True</VariablesScanned>
	<PageWidth>640</PageWidth>
	<PageHeight>480</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\Daniel\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>en</LanguageCode>
	<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>
	<Components>
		<FunctionList name="Subroutines"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<Listbox id="Listbox1">
							<left>36px</left>
							<top>21px</top>
							<width>212px</width>
							<height>72px</height>
							<items>AAA,BBB,CCC,DDD</items>
							<variable>ListBox</variable>
							<init_value>AAA</init_value>
							<multi_select>False</multi_select>
						</Listbox>
						<TextArea id="TextArea1">
							<left>304px</left>
							<top>24px</top>
							<width>321px</width>
							<height>368px</height>
							<variable>[TextAreaContent]</variable>
							<place_holder>Write something here...</place_holder>
							<change>SetVar [message] &quot;&quot;</change>
						</TextArea>
						<ProgressBar id="ProgressBar1">
							<left>54px</left>
							<top>430px</top>
							<width>198px</width>
							<height>21px</height>
							<max>100</max>
						</ProgressBar>
						<Paragraph id="Paragraph1">
							<left>32px</left>
							<top>176px</top>
							<width>216px</width>
							<height>30px</height>
							<text>Your selection is: [ListBox]</text>
						</Paragraph>
						<RadioButton id="RadioButton1">
							<left>39px</left>
							<top>128px</top>
							<width>208px</width>
							<height>23px</height>
							<caption>AAAA</caption>
						</RadioButton>
						<PushButton id="PushButton2">
							<left>304px</left>
							<top>400px</top>
							<width>320px</width>
							<height>40px</height>
							<caption>Copy TextArea Content</caption>
							<click>SetVar [inputname] &quot;TextArea1&quot;
BeginJS
 var copyText = document.getElementById($App.inputname);
 copyText.select();
 copyText.setSelectionRange(0, 99999);
 document.execCommand(&quot;copy&quot;);
EndJS
SetVar [message] &quot;The text has been copied to the clipboard&quot;
</click>
						</PushButton>
						<Paragraph id="Paragraph2">
							<left>304px</left>
							<top>448px</top>
							<width>320px</width>
							<height>24px</height>
							<text>[message]</text>
						</Paragraph>
						<PushButton id="PushButton1">
							<left>32px</left>
							<top>216px</top>
							<width>248px</width>
							<height>40px</height>
							<caption>Copy selection to TextArea</caption>
							<click>SetVar [TextAreaContent] [ListBox]
</click>
						</PushButton>
					</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>640px</width>
							<height>480px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
