hi all. i’m currently creating an animation for my Multimedia Industry Certificate III course.
i’ve created an input text box where the user enters their name into it to begin the animation. i’ve created the output text box which works and all the text shows up, but the only problem is that it appears broken apart and isnt in a continuous sentence which is what i would like it to do.
the coding i’ve used for the frame is:
enter.onRelease = function() {
gotoAndStop(2);
output = input;
output = “Hi “+input+”. There’s a treasure map somewhere in the living room that leads to buried treasure. Let’s go find it!”;
};
and the output text box in the animation looks like this:
can anybody help me with coding or anything to make it appear in the one line instead of the break after Bob. It would be much appreciated!!!
Ev