you need to test to see wether the variable is loaded.
How are you retrieving the variable?
You could try attaching similar to a MC:
onClipEvent(load) {
this.loadVariables ("myvariables.txt");
}
onClipEvent(data) {
_root.myComboBox.text=myTextVar
}
ben