Вот простой пример того, что я имею в виду:
private var ex:String="day";
......
closeWindows(ex);
trace(ex);//I would like it to trace "night"
......
//this can be in another class, we assume that the "ex" variable can't be accessed directly
private function closeWindows(context:String):void {
context = "night"
}
Каким-то образом мне нужно передать ссылку, а не само значение в метод closeWindows.
Любая помощь, это высоко ценится.
Благодарю.