Code: Select all
on mouseUp
put varName1 & " is very fast!" into field "fldOutput"
put varName2 & " is not nearly as fast as " & varName1 & "!" into field "fldOutput"
put varName3 & " is the slowest of all!!!" into field "fldOutput"
end mouseUp
John is very fast!
Bob is not nearly as fast as John!
Steve is the slowest of all!!!
However my field only displays one line of text - the last line entered.
I assume the program is actually showing all three lines, but the first two are being displayed so quickly I don't notice, then the program stops when displaying the last line.
So, how can I have the program display all of the lines mentioned above?
How can I move to the next line of the field in livecode?