Ava-anCh3 0 Posted November 18, 2004 does anyone know how to concatenate a string with a variable? using titleText ["Show this text", "PLAIN"] lets say i have a gobal variable integer called score which is value 15 and i want to display this in titleText i tried using titleText with + to concanenate TitleText ["Your score is "+format["%1",score]+"/24 target", "PLAIN", 1] Share this post Link to post Share on other sites
bn880 5 Posted November 18, 2004 why not try TitleText [ format["Your score is %1/24 target",score], "PLAIN", 1] I would think the other method should somehow work as well... odd Share this post Link to post Share on other sites