hangalot
07-24-2002, 08:32 AM
hi all
am playing with symbols, what not. When i create a symbol export and make availible for import bla bla, then goto new movie import symbol, the symbol gets rendered fine, except the combo boxes in it which doesn't render at all :(
major prob. what can be done :)
next question slightly more of the topic. when i attach a symbol(movie) dynamically :
function createPara(name){
paraCount++;
_root.attachMovie("ParaNode", name , paraCount);
}
the pointer to obj resides in in name, jaja? so what i want to do is get this pointer in an array.
maybe its just cause its late but i canna get it right!
example: arrParaNodes = new Array(4);
function createPara(name){
_root.attachMovie("ParaNode", name , paraCount);
arrParaNodes[paraCount++] = name;
// but if i call function on new instance of obj, no success
//thus arraParaNodes[paraCount] == undefined !!!!!!
}
;)
am playing with symbols, what not. When i create a symbol export and make availible for import bla bla, then goto new movie import symbol, the symbol gets rendered fine, except the combo boxes in it which doesn't render at all :(
major prob. what can be done :)
next question slightly more of the topic. when i attach a symbol(movie) dynamically :
function createPara(name){
paraCount++;
_root.attachMovie("ParaNode", name , paraCount);
}
the pointer to obj resides in in name, jaja? so what i want to do is get this pointer in an array.
maybe its just cause its late but i canna get it right!
example: arrParaNodes = new Array(4);
function createPara(name){
_root.attachMovie("ParaNode", name , paraCount);
arrParaNodes[paraCount++] = name;
// but if i call function on new instance of obj, no success
//thus arraParaNodes[paraCount] == undefined !!!!!!
}
;)