generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.as
13 lines (13 loc) · 1.09 KB
/
PROJECT_LANG_1.as
1
2
3
4
5
6
7
8
9
10
11
12
13
// Start of script
// I have chosen ActionScript as the main project language file for this project (Seanpm2001/Learn-ActionScript-3) as this project is about learning the ActionScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here. Emulation will be done with Ruffle-rs or another open source flash player.
// Main
var txtHello: TextField = new TextField();
txtHello.text = "I have chosen ActionScript as the main project language file for this project (Seanpm2001/Learn-ActionScript-3) as this project is about learning the ActionScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here. Emulation will be done with Ruffle-rs or another open source flash player.";
this.addChild(txtHello);
break;
/* File info
* File type: ActionScript 3.0 source file (*.as)
* File version: 1 (Friday, 2021 November 12th at 2:46 pm)
* Line count (including blank lines and compiler line): 14
*/
// End of script