Quantcast
Channel: Adobe Community: Message List
Viewing all articles
Browse latest Browse all 92406

Re: Having trouble trying to control a series of elements using a for-loop

$
0
0

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!


Viewing all articles
Browse latest Browse all 92406

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>