Global function in Adobe Edge animated
To create truly global variable in Edge animated, define in a symbol (usually inside the Stage.compositionReady event handler, a good place for global stuff) : sym.globalFunction = function(){ // statements } To call this function from another symbol : sym.getComposition().getStage().globalFunction(); Here the variable holds a function, but it could hold a number, string, etc.