Hi, Joel -
My clearAll() function is in the main code window. The entire code window (including Edge-generated comments) looks like this:
/***********************
* 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
var selectedState;
var stArray = ["WA_on", "WY_on"];
console.log("Array length is "+stArray.length);
function clearAll() {
console.log("running this function");
//$.each(stArray, function (index,value)
//{
//console.log("hiding "+value);
//sym.$(value).hide();
//console.log(value+" is now hidden");
//});
for (var i=0; i<stArray.length; i++){
var myState = stArray[i];
sym.$(myState).hide();
}
}
//Edge symbol: 'stage'
(function(symbolName) {
Symbol.bindElementAction(compId, symbolName, "${_WY_off}", "click", function(sym, e) {
clearAll();
// do some button stuff
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_WA_off}", "click", function(sym, e) {
clearAll();
// do some button stuff
});
//Edge binding end
})("stage");
//Edge symbol end:'stage'
})(jQuery, AdobeEdge, "EDGE-7029468");
I appreciate any help that anyone can provide in getting this working - thanks!