<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Apple iPhone 6</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>375</PageWidth>
	<PageHeight>667</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\rocco\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<CustomCSS>input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; &lt;- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* &lt;-- Apparently some margin are still there even though it&apos;s hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
</CustomCSS>
	<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"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<pageenter>SetObjectAttribute &quot;NumericInput1&quot; &quot;step&quot; 0.1</pageenter>
					<Components>
						<NumericInput id="NumericInput1">
							<left>35px</left>
							<top>140px</top>
							<width>313px</width>
							<height>34px</height>
							<style>text-align:right</style>
							<variable>[numero]</variable>
							<init_value>0</init_value>
						</NumericInput>
						<PushButton id="PushButton1">
							<left>60px</left>
							<top>201px</top>
							<width>57px</width>
							<height>40px</height>
							<style>font-weight:bold</style>
							<caption>+ ok</caption>
							<click>setvar [numero] [numero]+0.1

beginjs
    $App.numero = parseFloat($App.numero.toFixed(1));
endjs</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>60px</left>
							<top>253px</top>
							<width>57px</width>
							<height>40px</height>
							<style>font-weight:bold</style>
							<caption>- ok</caption>
							<click>setvar [numero] [numero]-0.1

beginjs
    $App.numero = parseFloat($App.numero.toFixed(1));
endjs</click>
						</PushButton>
						<PushButton id="PushButton3">
							<left>261px</left>
							<top>200px</top>
							<width>57px</width>
							<height>40px</height>
							<style>font-weight:bold</style>
							<caption>+ ko</caption>
							<click>setvar [numero] [numero]+0.1

</click>
						</PushButton>
						<PushButton id="PushButton4">
							<left>261px</left>
							<top>252px</top>
							<width>57px</width>
							<height>40px</height>
							<style>font-weight:bold</style>
							<caption>- ko</caption>
							<click>setvar [numero] [numero]-0.1</click>
						</PushButton>
						<Paragraph id="Paragraph1">
							<left>46px</left>
							<top>109px</top>
							<width>287px</width>
							<height>28px</height>
							<style>color:#A8A8A8;font-style:italic;text-align:center</style>
							<text>spin buttons are hidden via CSS</text>
						</Paragraph>
					</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>800px</width>
							<height>1280px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
