例如,我的LiveCode应用程序中有3个字段。字段“firstName”,字段“lastName”和字段“both”。
我之前使用过以下内容
put field "firstName" into field "both"
put field "lastName" after field "both"
这确实加入了它们,但名称之间没有空格。
是否有其他方法可以执行此操作并在名称之间包含空格?
答案 0 :(得分:2)
只需使用&&在两个值之间添加一个空格。
put field "firstName" && field "lastName" into field "both"
顺便说一下。您的示例代码不适用于"和"无论如何。你会得到价值"假"在现场"两个"。