Orca 0 Posted September 20, 2004 how do you inject variables into a string parameter eg Func Splash($text) SplashTextOn ( "Level Progress", $text, 550, 22, 0, 0) EndFunc Splash("Putting element "+$element+" in slot "+$X+", "+$Y+"!") I AM ORCA!! A VERY POWERFUL WHALE!!! Share this post Link to post Share on other sites
Matt @ MPCS 0 Posted September 20, 2004 Try this: Func Splash($text) SplashTextOn ( "Level Progress", $text, 550, 22, 0, 0) EndFunc Splash("Putting element " & $element & " in slot " & $X & ", " & $Y & "!") I haven't tested the coe, but it should work. *** Matt @ MPCS Share this post Link to post Share on other sites