I guess I'd animate the text on its own layer, and I'd have a button or two that toggles this layer's visibility, but I'm not sure how to go about doing this.
So far searching hasn't brought anything up.
Any and all help is appreciated!
Moderator: Moderators
Code: Select all
if (words.visible=false) {
words.visible=true;
}
if (words.visible=true) {
words.visible=false;
}It hides an instance with the name "shape" so you could animate a movie clip and sync it to the video and toggle its visibility.bicostp wrote:Yep!
Does it just show and hide a string of text, or is the text on its own layer and the buttons toggle that layer on or off? (if you could host the .fla file somewhere, that would be great.) I've got Flash MX (not pro or anything, basically Flash 6), what version are you using? (hopefully this function will be supported...)
*whistles*Skyone wrote:Make an object called 'words'. 'Words' should be placed on the first frame of the movie. 'Words' handles the text, and is set to visible=false or something (I haven't used flash actionscript in a while) on the first frame.
Make a button. On release of it, putor something along those lines.Code: Select all
if (words.visible=false) { words.visible=true; } if (words.visible=true) { words.visible=false; }
It's nothing like that, it messes with alpha levels for better speed in the visibility to invisibility change or vice versa.Skyone wrote:*whistles*Skyone wrote:Make an object called 'words'. 'Words' should be placed on the first frame of the movie. 'Words' handles the text, and is set to visible=false or something (I haven't used flash actionscript in a while) on the first frame.
Make a button. On release of it, putor something along those lines.Code: Select all
if (words.visible=false) { words.visible=true; } if (words.visible=true) { words.visible=false; }