Your syntax is perfectly fine and your code should work, assuming the following:
- A MovieClip named
profil exists in the current context.
- A MovieClip named
bonome0 exists within profil.
- A MovieClip named
bonome exists within bonome0.
Point 3 is where you seem to be having trouble, so check to be sure that you have a MovieClip nested inside bonome0 with the instance name bonome.
To debug, you can trace each of the MovieClips until you hit undefined, which will mean you don't have a MovieClip nested with the instance name you're trying to access it by. e.g.
trace(
profil,
profil.bonome0,
profil.bonome0.bonome
);
trace(this.profil.bonome0.bonome), is this MC even on stage at that time? Check if you have it placed on THE FIRST frame and named bonome. – Valentin Simonov Oct 22 '12 at 20:51