<?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>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>640</PageWidth>
	<PageHeight>480</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"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<PushButton id="PushButton1">
							<left>235px</left>
							<top>30px</top>
							<width>150px</width>
							<height>60px</height>
							<caption>Cargar Datos</caption>
							<click>LoadJSON &quot;https://jsonplaceholder.typicode.com/todos&quot; [mivar]
ArrayLen [mivar] [totalRegistros]
ConsoleLog [totalRegistros]
SetVar [actual] 0

SetVar [id] [mivar([actual]).id]
SetVar [userId] [mivar([actual]).userId]
SetVar [title] [mivar([actual]).title]
SetVar [completed] [mivar([actual]).completed]</click>
						</PushButton>
						<Container id="Container1">
							<left>30px</left>
							<top>110px</top>
							<width>565px</width>
							<height>105px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;padding-bottom:10px;padding-left:10px;padding-right:10px;padding-top:10px</style>
							<html>&lt;b&gt;ID:&lt;/b&gt; [id]&lt;br&gt;
&lt;b&gt;User ID:&lt;/b&gt; [userId]&lt;br&gt;
&lt;b&gt;Title:&lt;/b&gt; [title]&lt;br&gt;
&lt;b&gt;Completed:&lt;/b&gt; [completed]
</html>
						</Container>
						<PushButton id="PushButton2">
							<left>150px</left>
							<top>235px</top>
							<width>150px</width>
							<height>60px</height>
							<caption>Anterior</caption>
							<click>SetVar [actual] [actual]-1
If [actual] &lt; 0
  SetVar [actual] 0
EndIf
SetVar [id] [mivar([actual]).id]
SetVar [userId] [mivar([actual]).userId]
SetVar [title] [mivar([actual]).title]
SetVar [completed] [mivar([actual]).completed]</click>
						</PushButton>
						<PushButton id="PushButton3">
							<left>310px</left>
							<top>235px</top>
							<width>150px</width>
							<height>60px</height>
							<caption>Siguiente</caption>
							<click>SetVar [actual] [actual]+1
If [actual] &gt; [totalRegistros]
  SetVar [actual] [totalRegistros]
EndIf
SetVar [id] [mivar([actual]).id]
SetVar [userId] [mivar([actual]).userId]
SetVar [title] [mivar([actual]).title]
SetVar [completed] [mivar([actual]).completed]</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>
