actionscript 3 - how do I call a function if the image clicked is equal to its matching word? Actionscript3 -


when random word appears user has memorise , click correct corresponding image it. i'm trying write code runs if user selects right image. have paired words , images in array. i'm unsure how go calling function.

this i've attempted far, isn't working. i'm new actionscript3 excuse lack of knowledge trying teach myself.

all appreciated!!

this 1 way can this: see code comments

        basket.visible = false;          //------ home button ------\\         backhome1btn.addeventlistener(mouseevent.click, goback1click);          function goback1click(event:mouseevent):void{             gotoandstop("homepage");         }          //-------------------           var score:int = 0;          var items:array = new array(); //store food items in array         var wordstoshow:array = new array(); //store words show in array - array keep track of has been asked (or rather not asked yet)          //to reduce redundant code, call each food item (below)         function initfooditem(item:movieclip, word:string):void {             item.word = word; //forget array, store word on image dynamic property             item.addeventlistener(mouseevent.click, foodclicked);             items.push(item); //add array             wordstoshow.push(item); //add array              item.visible = false;         }          initfooditem(oc, "orange juice");         initfooditem(sand, "sandwich");         //...repeat other food items          //now randmize words show array:         wordstoshow.sort(function(a,b):int {             return(math.random() > .5) ? 1 : -1;         });          var curanswer:movieclip; //a var store current correct answer          //this next question per se         function displayword():void {             if(wordstoshow.length < 1){                 //they've been asked                 gotoandplay("gameoverpage");                 return;             }             curanswer = wordstoshow.pop(); //assigns last item in array cur asnwer, , pop removes item array (so won't asked again)             randomword.text = curanswer.word; //assign text word value of item              randomword.visible = true;             remember.visible = true;         }          remember.addeventlistener(mouseevent.click, readyclick);         //when click ready button         function readyclick(e:mouseevent):void {             //we have array of items, let's loop through , change them visible             (var i:int = 0; < items.length; i++) {                 //items[i].alpha = 1; //alpha values 0 - 1 in as3                 items[i].visible = true; //use visible instead of alpha if toggling visibility, it's more efficient             }              randomword.visible = false;             remember.visible = false;              bask.visible = true;             notepape.visible = false;              //! reason use visible instead of alpha = 0, alpha = 0 items still clickable!  visible = false items cannot clicked.         }          function foodclicked(e:mouseevent):void {             if (e.currenttarget == curanswer) {                 //if current target (the item clicked) same item stored in curanswer, answered correctly, this:                 score += 10; //or answering correctly                 gotoandstop("listpage"); //not sure does?                 displayword();             }else {                 //wrong                 gotoandstop("gameoverpage");             }         } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -