<?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>Desktop</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>480</PageWidth>
	<PageHeight>640</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>D:\\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>en</LanguageCode>
	<DisplayMode>standalone</DisplayMode>
	<ServiceWorker>OfflineCopyOfPages</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">
			<Components>
				<Function name="inputResult">
					<Params>InputResult|STRING|</Params>
					<ScriptLanguage>JavaScript</ScriptLanguage>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<PushButton id="PushButton1">
							<left>96px</left>
							<top>104px</top>
							<width>288px</width>
							<height>88px</height>
							<caption>[texto]</caption>
							<click>BeginJs
function sweetEmail(
  title,
  msg,
  icon,
  okBtn,
  label,
  placeholder,
  position
) {
  (async () =&gt; {
    const { value: input } = await Swal.fire({

      showCancelButton: true,
      confirmButtonText: &quot;Ok&quot;,
      cancelButtonText: &quot;Cancel&quot;,
      title: title,
      text: msg,
      input: &quot;email&quot;,
      icon: icon,
      inputLabel: label,
      inputPlaceholder: placeholder,
      position: position,
    });

    if (input)
      {
        // Run subroutine named InputResult and capture result
        $scope.InputResult(input);
      }
    else
      {
        // User aborted
        //$scope.InputResult(&quot;Party Pooper! :( &quot;);
      }
  })();
}

// position choices - &apos;top&apos;,&apos;top-start&apos;,&apos;top-end&apos;,&apos;center&apos;,&apos;center-start&apos;,&apos;center-end&apos;,&apos;bottom&apos;, &apos;bottom-start&apos;, or &apos;bottom-end&apos;
sweetEmail(&quot;Input email address&quot;, &quot;&quot;, &quot;&quot;, &quot;Ok&quot;, &quot;Your email address&quot;, &quot;Enter your email address&quot;,&quot;top&quot;);

EndJS</click>
						</PushButton>
						<Headline id="Headline1">
							<left>184px</left>
							<top>272px</top>
							<width>128px</width>
							<height>56px</height>
							<text>[email]</text>
						</Headline>
					</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>480px</width>
							<height>640px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
