在实时代码中将文本输入字段的边框线更改为紫色的按钮脚本中编写的代码?

A code to write in the script of a button that changes the border line of a text entry field to purple in livecode?

我在 livecode 中有一个按钮和文本输入字段,我想在按钮的脚本中编写代码以将文本输入字段的边框颜色更改为紫色?

这个代码对吗

将字段 "name of field" 的边框颜色设置为 "purple"

我是 livecode 的初学者,非常感谢您的帮助:)

你的陈述写对了。如果您要执行该语句,然后在字段的 属性 检查器中查看 borderColor 属性,您会发现它已设置为紫色。但是,您需要了解 LiveCode 中的字段。当您第一次创建字段时,它被设置为具有微妙的 3-D 边框外观,这是 Mac 和 Windows 上字段的标准外观。当 LiveCode 字段设置为 3-D 时,边框的颜色由两个单独的颜色属性决定,topColorbottomColor,它们决定了 3-D 斜面的颜色场地。要在您的场地上创建一个单一的实线边框,请执行以下操作:

set the threeD of field "name of field" to false
set the borderColor of field "name of field" to "purple"

你会看到你想要的效果。