A: 

If this another value suppose to be "aries", than you've been doing it wrong. You've defined new myVar variable where you should've only change its value.

This line defines new variable for the current scope:

var myVar:String = "aries";

This line changes the value of an existing variable:

myVar = "aries";
Eran Betzalel
Oh, yes, you're right. But this does not solve the problem.Thanks
Astraport
A: 

Not entirely sure what your question is, but are you trying to change a label in the UI based on the button click? If so, you'll want to add [Bindable] above your declaration of myVar.

Wade Mueller