here is the fla file - http://www.alnoor.us/attachMovie.fla
PROBLEM - I have an attached movie on root level that movie has a button inside it and I want to tell that button to do some function.
simple----BUT
I want to put the action on the first frame on the root and not inside th MC.
here is the code Iam working on and the same is in the fla file in the above link.
but1.onRelease = function(){
_root.blank.attachMovie(“clip1”,“newClip1”,1);
}
_root.blank.newClip1.but2 = function(){
getURL(“http://www.yahoo.com”, “blank”);
}
explanation of the above code–
but1 is the button on root that tells clip1 to attach on blank MC(thats also on root) clip1 has the button inside it call but2 and tried to tell that bloody but2 to open that the URL link but its not doing so
NOTE - I want to put all the action on the action on the first frame and not inside th MC.
hope for some good reply
thank for reading.