-
1. Re: change text between loops
Ned Murphy Oct 30, 2013 8:04 AM (in response to ruthgordy)While Actionscript could be used to solve the problem it is not necessarily the only solution. You could skip having two loops and just extend the timeline for the equivalent length of two loops and change the text in the second half of it, repeating whatever else goes twice within that extended length.
To take an Actionscript apporach to solving it you can do a simple logic check to change the text. There are several approaches you could take, one being... Start off with the (dynamic) textfield being empty. First check if the textfield contains the first loop of text and if it does then assign the second loop, but if it does not, assign the first text.
if(tfield.text == "Apply now for january semester..."){
tfield.text = "to an open house date";
} else {
tfield.text = "Apply now for january semester...";
}
-
2. Re: change text between loops
ruthgordy Oct 30, 2013 8:10 AM (in response to Ned Murphy)Will try your suggestions and hopefully give you a correct answer
Thanks for your help now and problems you have helped me solve in the past!!
JA
-
3. Re: change text between loops
Ned Murphy Oct 30, 2013 9:32 AM (in response to ruthgordy)You're welcome



