I have a movieclip called “auto”, inside it I have a text called “title” and a movieclip “info”.
Into info I have a script in as3 and I want to take the title form the superior movieclip called auto.
Movieclip info is inside the movieclip.
This is my code inside info but doesn’t work
trace(auto.title.text)
You said you added to script to info, so your code is looking for a property or clip inside info called “auto”. But auto is not inside info.
instead, try
trace(info.parent.title.text);