Text manipulation in a loop
Hi all, very new to actionscript, so may be very simple and stupid question, but here I go : So just a simple program where the user enters a base and a power i.e : 4^3. My job is to show the user the value of that base to every power smaller and equal to it. So in this example it would show as :
4^0=1
4^1=4
4^2=16
4^3=64
I am able to show the value but only of the power entered by user, my question is how can I loop it so that every value is shown? And so that every different value is beneath the previous one as shown in my example.
If it isn't clear enough feel free to ask additional questions.
Thanks for the help.