|
|
Search Tutorials
Setup MessageAfter setup a dynamic text movie clip, now we have to prepare the messages to be displayed. Double clik the text movie clip, add a new layer as action layer. Named the variable of dynamic text as mess.
Put action in each keyframe which contains the message you want to display, then followed by the stop action. For example action at keyframe 1. mess="hi... how are you? "; stop();
Repeat the above step for the rest keyframes one by one, using the different messages. At the last keyframe (24 - in this tutorial), put the action: play();
Action AnalysisAction script in each keyframe displays the value of message in variable mess. The stop action is (of course) to stop the message and avoid of changing to next message. This gives enough time for visitor to read one message before rolling to the next one.The changing message is triggered when while the loading process reachs the action at keyframe 23 in preloader scene, which tells to change to the next message. The action at last keyframe (24) allows the message for looping. It will happen when the loading process still works but all the message has displayed.
|
||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||
|