<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Awesome Menu</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Asmat Qatea</Author>
	<Version>1.0</Version>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>720</PageWidth>
	<PageHeight>540</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\asmat\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<CustomCSS>.navigation .list .icon{
border-radius:50%;
width:55px;
height:55px;
color:black;
z-index:2;
transition:0.5s;
transition-delay:0s;
}

.navigation .list.active .icon{
background:var(--clr);
color:white;
transform:translateY(-27px);
z-index:2;
transition-delay:0.25s;
}

.navigation div:nth-child(1).active ~ .indicator{
transform:translateX(0px);
}

.navigation div:nth-child(2).active ~ .indicator{
transform:translateX(calc( 70px * 1 ));
}
.navigation div:nth-child(3).active ~ .indicator{
transform:translateX(calc( 70px * 2 ));
}

.navigation div:nth-child(4).active ~ .indicator{
transform:translateX(calc( 70px * 3 ));
}

.navigation div:nth-child(5).active ~ .indicator{
transform:translateX(calc( 70px * 4 ));
}



.navigation .list .icon::before{
content:&apos;&apos;;
position:absolute;
top:10px;
left:0px;
width:100%;
height:100%;
background:var(--clr);
z-index:-1;
border-radius:50%;
filter:blur(5px);
opacity:0;
transition:0.5s;
transition-delay:0s;
}

.navigation .active .icon::before{
opacity:0.5;
transition-delay:0.25s;
}



.indicator{
position:absolute;
border-radius:50%;
top:-35px;
left:25px ;
z-index:1;
width:70px;
height:70px;
background:white;
transition:0.5s;
}

.indicator::before{
    content: &apos;&apos;;
    position: absolute;
    width: 30px;
    height: 30px;
    background:transparent;
    left: -28px;
    top:5px;
    border-radius:50%;
    box-shadow:15px 18px #fff;

}
.indicator::after{
    content: &apos;&apos;;
    position: absolute;
    width: 30px;
    height: 30px;
    background:transparent;
    right: -28px;
    top:5px;
    border-radius:50%;
    box-shadow:-15px 18px #fff;

}

.flexCenter{
display:flex;
justify-content:center;
align-items:center;
}</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>
	<startup>NeoScriptToJS


GetObjectHTML &quot;homePage&quot; [homePage]
GetObjectHTML &quot;userPage&quot; [userPage]
GetObjectHTML &quot;chatPage&quot; [chatPage]
GetObjectHTML &quot;shotPage&quot; [shotPage]
GetObjectHTML &quot;settingPage&quot; [settingPage]
</startup>
	<Components>
		<FunctionList name="Subroutines">
			<Components>
				<Function name="activeItem">
					<Code>document.querySelectorAll(&apos;.list&apos;).forEach((item)=&gt;{
item.classList.remove(&apos;active&apos;);
})


obj.classList.add(&apos;active&apos;);


$(&apos;#homePage&apos;).css(&apos;background&apos;,$(obj).attr(&apos;style&apos;).replace(&apos;--clr:&apos;,&apos;&apos;))
//alert($(obj).attr(&apos;style&apos;).replace(&apos;--clr:&apos;,&apos;&apos;));</Code>
					<Params>obj|STRING|</Params>
					<ScriptLanguage>JavaScript</ScriptLanguage>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="menuPage">
					<style>background-color:#202225</style>
					<pageenter>SetObjectHTML &quot;viewer&quot; &quot;[homePage]&quot;</pageenter>
					<Components>
						<Container id="viewer">
							<left>0px</left>
							<top>0px</top>
							<width>100%</width>
							<height>100%</height>
						</Container>
						<Container id="Container1">
							<left>153px</left>
							<top>434px</top>
							<width>400px</width>
							<height>60px</height>
							<style>background-color:white;border-radius:10px;box-shadow:0 15px 25px rgba(0,0,0,0.15);overflow-x:visible;overflow-y:visible</style>
							<css_class>flexCenter navigation</css_class>
							<Components>
								<Container id="Container2">
									<left>24px</left>
									<top>15px</top>
									<width>70px</width>
									<height>60px</height>
									<style>overflow-x:visible;overflow-y:visible</style>
									<align>top</align>
									<css_class>flexCenter list active</css_class>
									<neo_custom>onclick=&quot;neosubroutine.activeItem(this)&quot;
style=&quot;--clr:#f44336&quot;</neo_custom>
									<html>&lt;span class=&quot;flexCenter icon&quot;&gt;
             &lt;svg style=&quot;width:24px;height:24px&quot; viewBox=&quot;0 0 24 24&quot;&gt;
                    &lt;path fill=&quot;currentColor&quot; d=&quot;M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z&quot;&gt;&lt;/path&gt;
                &lt;/svg&gt;
&lt;/span&gt;</html>
									<click>SetObjectHTML &quot;viewer&quot; &quot;[homePage]&quot;</click>
								</Container>
								<Container id="Container4">
									<left>118px</left>
									<top>30px</top>
									<width>70px</width>
									<height>60px</height>
									<style>overflow-x:visible;overflow-y:visible</style>
									<align>top</align>
									<css_class>flexCenter list</css_class>
									<neo_custom>onclick=&quot;neosubroutine.activeItem(this)&quot;
style=&quot;--clr:#ffa117&quot;</neo_custom>
									<html>&lt;span class=&quot;flexCenter icon&quot;&gt;
                &lt;svg style=&quot;width:24px;height:24px&quot; viewBox=&quot;0 0 24 24&quot;&gt;
                    &lt;path fill=&quot;currentColor&quot;
                        d=&quot;M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z&quot;&gt;
                    &lt;/path&gt;
                &lt;/svg&gt;
&lt;/span&gt;</html>
									<click>SetObjectHTML &quot;viewer&quot; &quot;[userPage]&quot;

consolelog [userPage]</click>
								</Container>
								<Container id="Container5">
									<left>210px</left>
									<top>279px</top>
									<width>70px</width>
									<height>60px</height>
									<style>overflow-x:visible;overflow-y:visible</style>
									<align>top</align>
									<css_class>flexCenter list</css_class>
									<neo_custom>onclick=&quot;neosubroutine.activeItem(this)&quot;
style=&quot;--clr:#0fc70f&quot;</neo_custom>
									<html>&lt;span class=&quot;flexCenter icon&quot;&gt;
                &lt;svg style=&quot;width:24px;height:24px&quot; viewBox=&quot;0 0 24 24&quot;&gt;
                    &lt;path fill=&quot;currentColor&quot;
                        d=&quot;M12,3C17.5,3 22,6.58 22,11C22,15.42 17.5,19 12,19C10.76,19 9.57,18.82 8.47,18.5C5.55,21 2,21 2,21C4.33,18.67 4.7,17.1 4.75,16.5C3.05,15.07 2,13.13 2,11C2,6.58 6.5,3 12,3Z&quot;&gt;
                    &lt;/path&gt;
                &lt;/svg&gt;
&lt;/span&gt;</html>
									<click>SetObjectHTML &quot;viewer&quot; &quot;[chatPage]&quot;</click>
								</Container>
								<Container id="Container6">
									<left>266px</left>
									<top>23px</top>
									<width>70px</width>
									<height>60px</height>
									<style>overflow-x:visible;overflow-y:visible</style>
									<align>top</align>
									<css_class>flexCenter list</css_class>
									<neo_custom>onclick=&quot;neosubroutine.activeItem(this)&quot;
style=&quot;--clr:#2196f3&quot;</neo_custom>
									<html>&lt;span class=&quot;flexCenter icon&quot;&gt;
                &lt;svg style=&quot;width:24px;height:24px&quot; viewBox=&quot;0 0 24 24&quot;&gt;
                    &lt;path fill=&quot;currentColor&quot;
                        d=&quot;M4,4H7L9,2H15L17,4H20A2,2 0 0,1 22,6V18A2,2 0 0,1 20,20H4A2,2 0 0,1 2,18V6A2,2 0 0,1 4,4M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9Z&quot;&gt;
                    &lt;/path&gt;
                &lt;/svg&gt;
&lt;/span&gt;</html>
									<click>SetObjectHTML &quot;viewer&quot; &quot;[shotPage]&quot;</click>
								</Container>
								<Container id="Container7">
									<left>298px</left>
									<top>23px</top>
									<width>70px</width>
									<height>60px</height>
									<style>overflow-x:visible;overflow-y:visible</style>
									<align>top</align>
									<css_class>flexCenter list</css_class>
									<neo_custom>onclick=&quot;neosubroutine.activeItem(this)&quot;
style=&quot;--clr:#b145e9&quot;</neo_custom>
									<html>&lt;span class=&quot;flexCenter icon&quot;&gt;
                &lt;svg style=&quot;width:24px;height:24px&quot; viewBox=&quot;0 0 24 24&quot;&gt;
                    &lt;path fill=&quot;currentColor&quot;
                        d=&quot;M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z&quot;&gt;
                    &lt;/path&gt;
                &lt;/svg&gt;

&lt;/span&gt;</html>
									<click>SetObjectHTML &quot;viewer&quot; &quot;[settingPage]&quot;</click>
								</Container>
								<Container id="indicator">
									<style>overflow-x:visible;overflow-y:visible</style>
									<css_class>indicator</css_class>
								</Container>
							</Components>
						</Container>
					</Components>
				</Page>
				<Page id="homePage">
					<style>background-color:#202225;transition:0.5s</style>
					<foreground_masterpage>MasterPage</foreground_masterpage>
					<Components>
						<Polygon id="Polygon1">
							<left>40px</left>
							<top>39px</top>
							<width>645px</width>
							<height>236px</height>
							<style>stroke:black;stroke-width:1px;fill:white</style>
							<Points>56,23,209,9,352,0,644,89,408,160,297,235,147,118,0,152</Points>
						</Polygon>
					</Components>
				</Page>
				<Page id="userPage">
					<style>background-color:rgba(88,45,255,0.36)</style>
					<Components>
						<PushButton id="PushButton1">
							<left>305px</left>
							<top>260px</top>
							<width>113px</width>
							<height>45px</height>
							<caption>A</caption>
							<click>jsAlert &quot;just test&quot;</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>306px</left>
							<top>209px</top>
							<width>113px</width>
							<height>45px</height>
							<caption>B</caption>
							<click>jsAlert &quot;just test&quot;</click>
						</PushButton>
					</Components>
				</Page>
				<Page id="chatPage">
					<style>background-color:RED</style>
					<Components>
						<Ellipse id="Ellipse1">
							<left>172px</left>
							<top>39px</top>
							<width>103px</width>
							<height>151px</height>
							<style>stroke:black;stroke-width:1px;fill:white</style>
						</Ellipse>
						<Ellipse id="Ellipse2">
							<left>434px</left>
							<top>43px</top>
							<width>97px</width>
							<height>151px</height>
							<style>stroke:black;stroke-width:1px;fill:white</style>
						</Ellipse>
					</Components>
				</Page>
				<Page id="shotPage">
					<style>background-color:green</style>
					<Components>
						<Container id="Container3">
							<left>83px</left>
							<top>29px</top>
							<width>148px</width>
							<height>479px</height>
							<style>background-color:black;border-style:solid;border-width:1px</style>
						</Container>
						<Container id="Container8">
							<left>270px</left>
							<top>28px</top>
							<width>148px</width>
							<height>479px</height>
							<style>background-color:black;border-style:solid;border-width:1px</style>
						</Container>
						<Container id="Container13">
							<left>474px</left>
							<top>30px</top>
							<width>148px</width>
							<height>479px</height>
							<style>background-color:black;border-style:solid;border-width:1px</style>
						</Container>
					</Components>
				</Page>
				<Page id="settingPage">
					<style>background-color:yellow</style>
					<Components>
						<Container id="Container9">
							<left>63px</left>
							<top>50px</top>
							<width>242px</width>
							<height>128px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
						</Container>
						<Container id="Container10">
							<left>334px</left>
							<top>49px</top>
							<width>242px</width>
							<height>128px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
						</Container>
						<Container id="Container11">
							<left>61px</left>
							<top>204px</top>
							<width>242px</width>
							<height>128px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
						</Container>
						<Container id="Container12">
							<left>337px</left>
							<top>240px</top>
							<width>242px</width>
							<height>128px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
						</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>640px</width>
							<height>480px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
