Use a variable in root for nested movieclip

Hello,

I want to use the same movieclip different times (different instances). The only thing that has to change in this movieclip is a string. I tried to solve this creating a variable.

To be more concrete, on root timeline i have

var RespJpeg:String = "bandlang2.jpg"

and inside the movieclip (actually inside a movieclip in a movieclip in a movieclip in a movieclip: 4level nested) i have

loadImage("RespJpeg")

This obviously didn’t work. What i tried was the following:

loadImage(MovieClip(root)."RespJpeg");
event.currentTarget.root.loadImage(MovieClip(root)."RespJpeg");
loadImage(event.currentTarget.root.String = "RespJpeg");

None worked. I’m not sure what I’m doing here. Please help me on the way… How to communicate between root and 4level nested movieclip

thanks
Ken