Hi,
I'm new to this forum. I'm having problems with arrays in as3. Is it possible to load each array value to different buttons?
For example, I have an object array with 10 different questions(not on stage. It's from a json file being pushed into an array as a object) and I have a page with 10 different buttons. I would like to click the different buttons and it will lead to the corresponding questions in the array.
For eg.
questionsArray:Array = new Array();
buttonsArray:Array = new Array(button1,button2,etc....,button10);
the json decoder has been used to decode my json file and it's working fine.
the 10 questions has also been pushed into questions array.
Items in buttonsArray are in the stage and are suppose to lead to their respective questions.
i.e:button 1 leads to question 1.
This could be done by adding a MouseEvent listener on every single button.But this will be very tedious and messy. It would also be difficult if there are too many questions to code for. So I was wondering if there is anyway, i could use the indexOf array or any other method to implement my buttons dynamically.
Any help would be much appreciated!
-hopelesscoder
I'm new to this forum. I'm having problems with arrays in as3. Is it possible to load each array value to different buttons?
For example, I have an object array with 10 different questions(not on stage. It's from a json file being pushed into an array as a object) and I have a page with 10 different buttons. I would like to click the different buttons and it will lead to the corresponding questions in the array.
For eg.
questionsArray:Array = new Array();
buttonsArray:Array = new Array(button1,button2,etc....,button10);
the json decoder has been used to decode my json file and it's working fine.
the 10 questions has also been pushed into questions array.
Items in buttonsArray are in the stage and are suppose to lead to their respective questions.
i.e:button 1 leads to question 1.
This could be done by adding a MouseEvent listener on every single button.But this will be very tedious and messy. It would also be difficult if there are too many questions to code for. So I was wondering if there is anyway, i could use the indexOf array or any other method to implement my buttons dynamically.
Any help would be much appreciated!
-hopelesscoder
Comment