AlbertAguirre
Programmer
Sheesh I'm so frustrated! I tried everything I could think of and I cannot make this work!
- I have a MC instance in the main timeline called IArchitecture
- Within the IArchitecture MC I have another MC called ISingle
- ISingle has a button, on release I want the IArchitecture MC to play a frame labeled "single" and stop.
Nothing works! So simple eh?
I named IArchitecture by going into the Instance tab and naming it with the "Name" field. This is correct right? I reference that instance with that name not the MC name right?
Heres my code:
on (release) {
tellTarget ("IArchitecture"
{
gotoAndStop ("single"
;
}
}
Heres another try:
on (release) {
_root.IArchitecture.gotoAndStop("single"
;
}
Whats wrong????
By the way, you guys rock! I always get help here...
- I have a MC instance in the main timeline called IArchitecture
- Within the IArchitecture MC I have another MC called ISingle
- ISingle has a button, on release I want the IArchitecture MC to play a frame labeled "single" and stop.
Nothing works! So simple eh?
I named IArchitecture by going into the Instance tab and naming it with the "Name" field. This is correct right? I reference that instance with that name not the MC name right?
Heres my code:
on (release) {
tellTarget ("IArchitecture"
gotoAndStop ("single"
}
}
Heres another try:
on (release) {
_root.IArchitecture.gotoAndStop("single"
}
Whats wrong????
By the way, you guys rock! I always get help here...