Source: commons.wikimedia.org

ActionScript is an object-oriented programming language originally developed by Macromedia Inc.. It is influenced by HyperTalk, the scripting language for HyperCard. It is now an implementation of ECMAScript, though it originally arose as a sibling, both being influenced by HyperTalk. ActionScript code is usually converted to byte-code format by a compiler. Wikipedia

Created Year: 1998
Designed by: Gary Grossman
Developed by: Macromedia

Wikidata: Q234657

Influenced: Haxe

Influenced by: ECMAScriptJavaJavaScript

Programming paradigms: functional programmingimperative programmingobject-oriented programmingprototype-based programming

Language types: functional programming languagemulti-paradigm programming language

ActionScript Influence Network

Pan and zoom the graph with your mouse or alternatively your fingers on touch devices.

Hello World in ActionScript

package 
{
	import flash.display.Sprite;
	import flash.text.TextField;
	
	public class actionscript extends Sprite
	{
		private var hello:TextField = new TextField();
		
		public function actionscript(){
			hello.text = "Hello World";
			addChild(hello);
		}
	}
}

Search on GitHub


Latest data update: 2024-02-07