Skip to content

Commit 50cb626

Browse files
authored
ActionScript directory [IMPORT]
Imported the ActionScript directory, containing 7 files in *.AS and *.HTML formats.
1 parent e19f622 commit 50cb626

7 files changed

+148
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<HTML>
2+
<HEAD>
3+
<TITLE>Welcome to SNU - SNU 2D Viewer</TITLE>
4+
</HEAD>
5+
<BODY BGCOLOR=" FFFFFF">
6+
<HR>
7+
<H3>This site is under construction</H3>
8+
<H1>Welcome</H1>
9+
<H2>Go back
10+
<a href="!SNU2DStart.html"> Click here!</a>
11+
<HTML>
12+
<HEAD>
13+
<TITLE>Home - SNU 1D Viewer</TITLE>
14+
</HEAD>
15+
<BODY BGCOLOR=" FFFFFF">
16+
<HR>
17+
<H3>This site is under construction</H3>
18+
<H1>SNU software center >> Programming Language List >> Actionscript >> Actionscript 2.0</H1>
19+
<H1>Sample programs</H1>
20+
<H1>Hello World program in Actionscript 2
21+
<a href="../../Programming Tools/Actionscript/2.0/Samples/HelloWorld_InActionScript2.as">Click here to download</a>
22+
<H1>====================================</H1>
23+
<H1>Copyleft Sean Walla Walla 2015-2019</H1>
24+
</HR>
25+
</BODY>
26+
</HTML>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<HTML>
2+
<HEAD>
3+
<TITLE>Welcome to SNU - SNU 2D Viewer</TITLE>
4+
</HEAD>
5+
<BODY BGCOLOR=" FFFFFF">
6+
<HR>
7+
<H3>This site is under construction</H3>
8+
<H1>Welcome</H1>
9+
<H2>Go back
10+
<a href="!SNU2DStart.html"> Click here!</a>
11+
<HTML>
12+
<HEAD>
13+
<TITLE>Home - SNU 1D Viewer</TITLE>
14+
</HEAD>
15+
<BODY BGCOLOR=" FFFFFF">
16+
<HR>
17+
<H3>This site is under construction</H3>
18+
<H1>SNU software center >> Programming Language List >> Actionscript >> Actionscript 3.0</H1>
19+
<H1>Sample programs</H1>
20+
<H1>Hello World program in Actionscript 3
21+
<a href="../../Programming Tools/Actionscript/3.0/Samples/HelloWorld_InActionScript3.as">Click here to download</a>
22+
<H1>====================================</H1>
23+
<H1>Copyleft Sean Walla Walla 2015-2019</H1>
24+
</HR>
25+
</BODY>
26+
</HTML>

Actionscript/!ACTIONSCRIPT_HOME.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<HTML>
2+
<HEAD>
3+
<TITLE>Welcome to SNU - SNU 2D Viewer</TITLE>
4+
</HEAD>
5+
<BODY BGCOLOR=" FFFFFF">
6+
<HR>
7+
<H3>This site is under construction</H3>
8+
<H1>Welcome</H1>
9+
<H2>Go back
10+
<a href="!SNU2DStart.html"> Click here!</a>
11+
<HTML>
12+
<HEAD>
13+
<TITLE>Home - SNU 1D Viewer</TITLE>
14+
</HEAD>
15+
<BODY BGCOLOR=" FFFFFF">
16+
<HR>
17+
<H3>This site is under construction</H3>
18+
<H1>SNU software center >> Programming Language List >> Actionscript</H1>
19+
<H1>Select a version:</H1>
20+
<a href="!ACTIONSCRIPT_2_HOME.html">ActionScript 2.0</a>
21+
<a href="!ACTIONSCRIPT_3_HOME.html">ActionScript 3.0</a>
22+
<H2>About Actionscript</H2>
23+
<H1>====================================</H1>
24+
<H1>Copyleft Sean Walla Walla 2015-2019</H1>
25+
</HR>
26+
</BODY>
27+
</HTML>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
createTextField("greet", 0, 0, 0, 100, 100);
2+
greet.text = "Hello, world";
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
var greet:TextField = new TextField();
2+
greet.text = "Hello World";
3+
this.addChild(greet);

Actionscript/ActionScriptTest.as

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// start of script
2+
<?xml version="1.0" encoding="utf-8"?>
3+
/*<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
4+
xmlns:s="library://ns.adobe.com/flex/mx/polysylabi"
5+
xmlns:mx="library://ns.adobe.com/flex/mx" layout="vertical"
6+
creationComplete="initApp()">
7+
// this library may not exist in the future :( create an alternate!
8+
*/
9+
<fx:Script>
10+
<![CDATA[
11+
public function initApp():void
12+
{
13+
// Prints our "Hello, world!" message into title
14+
title.text="Hello, World!";
15+
var x = 1;
16+
var y = 2;
17+
var z = 3;
18+
int a = 1;
19+
int b = 2;
20+
int c = 3;
21+
play
22+
delete
23+
reverse
24+
background
25+
}
26+
]]>
27+
</fx:Script>
28+
<s:Label id="title" fontSize="54" fontStyle="bold"/>
29+
</s:Application>
30+
// Version 1.00
31+
// Test created on: Thursday, September 5th 2019
32+
// end of script

Actionscript/ActionScriptTestV1.as

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// start of script
2+
<?xml version="1.0" encoding="utf-8"?>
3+
/*<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
4+
xmlns:s="library://ns.adobe.com/flex/mx/polysylabi"
5+
xmlns:mx="library://ns.adobe.com/flex/mx" layout="vertical"
6+
creationComplete="initApp()">
7+
// this library may not exist in the future :( create an alternate!
8+
*/
9+
<fx:Script>
10+
<![CDATA[
11+
public function initApp():void
12+
{
13+
// Prints our "Hello, world!" message into title
14+
title.text="Hello, World!";
15+
var x = 1;
16+
var y = 2;
17+
var z = 3;
18+
int a = 1;
19+
int b = 2;
20+
int c = 3;
21+
play
22+
delete
23+
reverse
24+
background
25+
}
26+
]]>
27+
</fx:Script>
28+
<s:Label id="title" fontSize="54" fontStyle="bold"/>
29+
</s:Application>
30+
// Version 1.00
31+
// Test created on: Thursday, September 5th 2019
32+
// end of script

0 commit comments

Comments
 (0)