This content has been marked as final.
Show 1 reply
-
1. Re: function ReleaseA() {
Ned Murphy Aug 6, 2012 5:34 AM (in response to Ron Colmen)In your for loop you are doing two seemingly unrelated things with acZm_m.. First you are treating it like it is a String variable, then you are treating it lke it is a movieclip. It cannot be both, and a String is not an interactive object.
_root.Accesso_summ.content_mc.acZ1["iconZ_mc"+cuAct].acZm_mc = "http://www.myweb.com/images/pimage"+iasor+".jpg"
...
...
_root.Accesso_summ.content_mc.acZ1["iconZ_mc"+cuAct].acZm_mc.onRelease = ReleaseA;
one of those lines has to change. The first is disallowing the second because it is redefining the object as a String.



