/*********************** * Adobe Edge Animate 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 Animate * ***********************/ (function($, Edge, compId){ var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes //Edge symbol: 'stage' (function(symbolName) { })("stage"); //Edge symbol end:'stage' //========================================================= //Edge symbol: 'Rules' (function(symbolName) { })("Rules"); //Edge symbol end:'Rules' //========================================================= //Edge symbol: 'Divorce' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 3750, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Divorce3}", "click", function(sym, e) { // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-divorce-lawyer_pa14551.htm", "_self"); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Divorce3}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov1'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Divorce3}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade1'); }); //Edge binding end })("Divorce"); //Edge symbol end:'Divorce' //========================================================= //Edge symbol: 'Custody' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 7500, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_custody2}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov2'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_custody2}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade2'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_custody2}", "click", function(sym, e) { // insert code for mouse click here // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-child-custody-lawyer_pa14563.htm", "_self"); }); //Edge binding end })("Custody"); //Edge symbol end:'Custody' //========================================================= //Edge symbol: 'Support' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 11250, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Support}", "click", function(sym, e) { // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-child-support-lawyer_pa14556.htm", "_self"); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Support}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov3'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_Support}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade3'); }); //Edge binding end })("Support"); //Edge symbol end:'Support' //========================================================= //Edge symbol: 'Alimony' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 15000, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_alimony}", "click", function(sym, e) { // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-alimony-lawyer_pa14558.htm", "_self"); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_alimony}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov4'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_alimony}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade4'); }); //Edge binding end })("Alimony"); //Edge symbol end:'Alimony' //========================================================= //Edge symbol: 'Down-level' (function(symbolName) { })("Down-level"); //Edge symbol end:'Down-level' //========================================================= //Edge symbol: 'Municipal' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 18750, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_municipal}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov5'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_municipal}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade5'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_municipal}", "click", function(sym, e) { // insert code for mouse click here // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-municipal-court-lawyer_pa14679.htm", "_self"); }); //Edge binding end })("Municipal"); //Edge symbol end:'Municipal' //========================================================= //Edge symbol: 'Boutique' (function(symbolName) { Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 22500, function(sym, e) { sym.stop(); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_boutique}", "mouseover", function(sym, e) { // insert code to be run when the mouse hovers over the object // play the timeline from the given position (ms or label) sym.play('hov6'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_boutique}", "mouseout", function(sym, e) { // insert code to be run when the mouse is moved off the object // play the timeline from the given position (ms or label) sym.play('fade6'); }); //Edge binding end Symbol.bindElementAction(compId, symbolName, "${_txt_boutique}", "click", function(sym, e) { // insert code for mouse click here // Navigate to a new URL in the current window // (replace "_self" with appropriate target attribute for a new window) window.open("/-boutique-legal-services-lawyer_pa14680.htm", "_self"); }); //Edge binding end })("Boutique"); //Edge symbol end:'Boutique' })(jQuery, AdobeEdge, "EDGE-13320335");