HTML beginner |
|
he, ik ben bezig met dynamisch menu. Maar ik heb een probleem, wrm werkt this.newName.mc_text.text = 'Bitch'; niet?
De mc in questie is een movieclip met alleen een textbox erin met als instance name mc_text
// Array of links
var links = Array('Koen', 'Esther', 'Thomas', 'Schoonheids');
// Making menu
for (var i=0; i<links.length; i++) {
// Setting variable's
var newName = 'mc_'+i;
var addHeight = 22*i;
// Duplicate and position
duplicateMovieClip(this.mc, newName, i);
var mcHeight = getProperty(newName,_y);
setProperty('mc_'+i, _y, mcHeight+addHeight);
// Add text
this.newName.mc_text.text = 'Bitch';
}
// Array of links var links = Array('Koen', 'Esther', 'Thomas', 'Schoonheids'); // Making menu for (var i=0; i<links.length; i++) { // Setting variable's var newName = 'mc_'+i; var addHeight = 22*i; // Duplicate and position duplicateMovieClip(this.mc, newName, i); var mcHeight = getProperty(newName,_y); setProperty('mc_'+i, _y, mcHeight+addHeight); // Add text this.newName.mc_text.text = 'Bitch'; }
opgelost doen het nu zo
|