hi there, I am making a flash site that has the following structure:
main swf load’s in empty mc an external swf (submenu) and each swf load’s in empty mc (subsubmenu) other swf.
now in each sub_swf (second swf) when button is clicked I disable some buttons:
on (release) {
loadMovie(“books_1.swf”,empty)
this.bt_2.enabled = false;
}
Now when the book_1.swf, (the sub_sub_swf) closes I need to enable the bt_2. This can be done by adding to the third swf’s closing button the following code:
on (release) {
_level0.bt_2.enabled = true;
this.unloadMovie(this);
}
This runs perfectly locally. When I upload all the swf’s the buttons from the second swf aren’t enabled…
Is there a solution for this? Did I make sense at all?
Thanx
miss_arez