<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Aplicación sin título</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Samsung Galaxy Tab 10</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>800</PageWidth>
	<PageHeight>1280</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<WebBuildTarget>C:\Users\Ivan\Desktop</WebBuildTarget>
	<AppIcon>C:\Users\Ivan\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>es</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>
						<Headline id="Headline1">
							<left>4px</left>
							<top>12px</top>
							<width>792px</width>
							<height>84px</height>
							<style>text-align:center</style>
							<text>Ejercicios con Objetos en VisualNeo Web</text>
						</Headline>
						<PushButton id="PushButton1">
							<left>4px</left>
							<top>88px</top>
							<width>263px</width>
							<height>40px</height>
							<caption>Crear Objeto</caption>
							<click>BeginJS

 $App.persona = {
    Nombre : &apos;Antonio&apos;,
    Apellido1 : &apos;Moreno&apos;,
    Apellido2 : &apos;Hernández&apos;,
    }

EndJS</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>272px</left>
							<top>88px</top>
							<width>263px</width>
							<height>40px</height>
							<caption>Actualizar Valor del Objeto</caption>
							<click>BeginJS

$App.persona.Nombre = &apos;Joaquin&apos;;

EndJS</click>
						</PushButton>
						<Container id="Container1">
							<left>4px</left>
							<top>136px</top>
							<width>792px</width>
							<height>28px</height>
							<style>text-align:center;background-color:#fff;border-width:1px</style>
							<html>Objeto: [persona]</html>
						</Container>
						<PushButton id="PushButton3">
							<left>540px</left>
							<top>88px</top>
							<width>253px</width>
							<height>40px</height>
							<caption>Eliminar Objeto</caption>
							<click>BeginJS

 delete $App.persona;

EndJS</click>
						</PushButton>
						<PushButton id="PushButton4">
							<left>4px</left>
							<top>172px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Obtener Valor&amp;nbsp; &apos;Nombre&apos; del Objeto</caption>
							<click>BeginJS

$App.valorObjeto = $App.persona.Nombre;

EndJS</click>
						</PushButton>
						<Container id="Container2">
							<left>328px</left>
							<top>184px</top>
							<width>263px</width>
							<height>24px</height>
							<style>background-color:#fff;border-width:1px</style>
							<html>Valor: [valorObjeto]</html>
						</Container>
						<PushButton id="PushButton5">
							<left>4px</left>
							<top>216px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Añadir&amp;nbsp;Propiedad&amp;nbsp; &apos;Telefono&apos;&amp;nbsp;al Objeto</caption>
							<click>BeginJS

$App.persona.Telefono = 9846537662;

EndJS</click>
						</PushButton>
						<PushButton id="PushButton6">
							<left>4px</left>
							<top>260px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Eliminar Propiedad&amp;nbsp; &apos;Apellido1&apos;&amp;nbsp;del Objeto</caption>
							<click>BeginJS

 delete $App.persona.Apellido1;

EndJS</click>
						</PushButton>
						<PushButton id="PushButton7">
							<left>4px</left>
							<top>304px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Obtener valores del objeto a Variables</caption>
							<click>BeginJS

$App.Nombre = $App.persona.Nombre;
$App.Apellido1 = $App.persona.Apellido1;
$App.Apellido2 = $App.persona.Apellido2;
$App.Telefono = $App.persona.Telefono;

EndJS</click>
						</PushButton>
						<Container id="Container3">
							<left>332px</left>
							<top>312px</top>
							<width>263px</width>
							<height>92px</height>
							<style>background-color:#fff;border-width:1px</style>
							<html>Nombre: [Nombre]&lt;br&gt;
Apellido1: [Apellido1]&lt;br&gt;
Apellido2: [Apellido2]&lt;br&gt;
Telefono: [Telefono]&lt;br&gt;</html>
						</Container>
						<PushButton id="PushButton8">
							<left>4px</left>
							<top>408px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Añadir Objeto dentro de otro Objeto</caption>
							<click>BeginJS

$App.persona.Objeto = {
                       Propiedad:  &apos;propiedad de ejemplo&apos;,
                       Propiedad1: &apos;propiedad1 de ejemplo&apos;,
                       }

EndJS</click>
						</PushButton>
						<PushButton id="PushButton9">
							<left>4px</left>
							<top>452px</top>
							<width>316px</width>
							<height>40px</height>
							<caption>Obtener datos de&amp;nbsp;Objeto dentro de otro Objeto</caption>
							<click>BeginJS


$App.Propiedad =  $App.persona.Objeto.Propiedad;
$App.Propiedad1 = $App.persona.Objeto.Propiedad1;


EndJS</click>
						</PushButton>
						<Container id="Container4">
							<left>328px</left>
							<top>460px</top>
							<width>263px</width>
							<height>88px</height>
							<style>background-color:#fff;border-width:1px</style>
							<html>Propiedad: [Propiedad]&lt;br&gt;
Propiedad1: [Propiedad1]</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>540px</width>
							<height>960px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
