ActionScript


the scripting language created by macromedia (now adobe) for use with flash, a rich media format that drives most interactive experiences on the web these days. actionscript is developed based on the ecma-262 standard, the same standard javascript is based on.

actionscript was first made available in the flash ide version 4 with very basic controls mostly to control the starting and playing of specific frames. starting in flash 5, actionscript has been expanded to be full-fledged scripting language and was finally editable within a text editor.

with flash mx 2004 (simultaneous fp version 7), macromedia introduced actionscript 2.0, a much revised version that supports strict variable typing and cl-ss-based construct. as2 revolutionizes flash development and allows large and complex environments to be built while utilizing most object-oriented programming principles.

adobe (purchased macromedia in 2006) is currently busy working on actionscript 3.0, which greatly expands on as’ matured status. as3 is currently available for flex 2.0 development, and is expected to be released for the flash ide with version 9.
actionscript 1.0
function foo()
{
this.sucks = true;
}
var foo = new foo();
trace(foo.sucks) // outputs true

actionscript 2.0
cl-ss org.f.foo
{
private var $sucks:boolean;

public function get sucks():boolean
{
return $sucks;
}

public function foo()
{
$sucks = true;
}

}

import org.f.foo;
var f:foo = new foo();
trace(foo.sucks) // outputs true
the main scripting language for macromedia flash, based mostly on javascript and css.
var raisespeed = 12;
_root.pacman._x -= raisespeed;

Read Also:

  • theoryhammer

    creating and promoting strategies for the warhammer fantasy or warhammer 40,000 tabletop miniatures games without actually testing them on the battlefield. most especially found on message boards. internet guy a: the thousand sons are unstoppable because they have two wounds. internet guy b: what a load of theoryhammer.

  • The prickstick

    a term for when one had a smelly b-ll-nd, then wipes the said cheese on his partners top lip. “hey man, i think your mums used up all the pr-ckstick” “dayumn”

  • Greppelheks

    dutch word meaning fairy tale figure of an special woman living in an awkward house. miss terpstra deserves a statue for beïng a true greppelheks to the dutch kingdom!

  • Activasm

    an intense sensation of energy and bliss brought about through engaging in activism; an activism -rg-sm. that huge anti-war demo had such such incredible energy that it gave me a mind-blowing activasm!

  • Adaora

    amazingly hot hbic very talented and unique knows how to get get get it! a good friend and someone who will always listen gives really good advice and is smarter than a b-tch guy-dammmmn whos that shawty over there lookin all fine n s-xy guys equally s-xy friend-my ni99@ thats adaora right there guy-i might […]


Disclaimer: ActionScript definition / meaning should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. All content on this website is for informational purposes only.