Pointer

is there anything like a pointer in flash?

for example: var mc:MovieClip = _root.my_mc
that works like a pointer, couse if i modify mc, im actually modifying _root.my_mc.

but that just works for MovieClips…
… is there anyway to do something like that but with another type of variable? so i can do something like this:


var s:String = "i am happy";
var p:Pointer = s;
p = "you are bored";
trace(s); //traces "you are bored"