Beginner to Adobe Flash CS6
Just started learning Adobe Flash CS6. There's tutorial I found which teaches variables. In his example, he uses this setup (which he gave for free download):

Bottom textbox has instance name "outputText".
He sets up some actionscript in the "actions" layer:
var thisVariable:int=5;
outputText.text=String(thisVariable);
When I do test, "5" correctly shows as in his tutorial.

BUT. If I do the same thing in a new ActionScript 3.0 file, I do not get any output in the bottom textbox. The only time I see something is when there are the same characters in the actionscript as in the top textbox.
Example:
bottom textbox has instance name "myText"

Adding number "1" in the top textbox.

Using string instead of int

I am still very new to this. Very confused by this. Here is the original link to the tutorial. Its free on Udemy:
https://www.udemy.com/learn-adobe-flash-from-scratch/learn/lecture/2782054#overview
