Simple attachMovie question
i have movie needs captions sync voiceover. user has option of showing captions (they off default)
i have attached captions in movie called "text" code:
attachmovie_btn.onrelease = function(){
this._parent.attachmovie("text", "text_mc", 1);
trio_mc._x = 275;
trio_mc._y = 200;
};
the user turns off captions code:
on (release) {
_parent.text_mc.removemovieclip();
}
my issue if user turns captions off , on captions start first frame when movie 1 minute presentation. know if graphic vs. movieclip have problem except can't control graphic actionscript.
two questions.
1) there anyway have captions keep starting on first frame , stay sync voice on whole presentation?… through visible = false or visible = true actionscript.
2) can control graphic timeline vs. movie timeline visible = true or visible = false code?
thanks, brian
i don't know keeps captions in synch begin with, can't recommend differently. have stay in synch,your best bet have present , utilize _visible = true/false property. graphic symbol not addressable using actionscript, , doesn't have _visible property, wouldn't able command it visible or not.
More discussions in ActionScript 1 and 2
adobe
Comments
Post a Comment