/*********************** * Adobe Edge Composition Actions * * Edit this file with caution, being careful to preserve * function signatures and comments starting with 'Edge' to maintain the * ability to interact with these actions from within Adobe Edge * ***********************/ (function($, Edge, compId){ var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes //Edge symbol: 'stage' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 3000, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-tele}", "mouseover", function(e) { // play the timeline from the given position (ms or label) this.play(4000); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-tele}", "mouseout", function(e) { // stop the timeline at the given position (ms or label) this.play(5000); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 4750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 5750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 6750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 7750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 8750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 9750, function(e) { // stop the timeline at the current position this.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-mail}", "mouseover", function(e) { this.play(6000); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-mail}", "mouseout", function(e) { this.play(7000); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-facebook}", "mouseover", function(e) { this.play(8000) }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_flik-facebook}", "mouseout", function(e) { this.play(9000) }); //Edge binding end })("stage"); //Edge symbol end:'stage' })(jQuery, jQuery.Edge, "EDGE-85422663");