0

我想通过代码创建一组字段。

create group
set the name of it to "myGroup"

create field
set the name of it to "myField"
set the top of field "myField" to 10
set the width of field "myField" to 100
set the left of  field "myField" to 20

-- add myField to myGroup
-- ??

set the backgroundBehavior of group "myGroup" to true 

问题

  • 如何将字段“myField”添加到组“myGroup”?
  • 以及如何将组添加到当前卡?
  • 如何测试卡是否包含组“myGroup”?
4

1 回答 1

5

要将字段添加到组:

create field "myField" in group "thisGroup"

然后您可以正常设置其他属性。您也可以单独设置名称,但将其包含在“create”命令中会很方便。

要将现有组添加到当前卡:

place group "myGroup" onto this card

您可以将任何卡片参考替换为“此卡片”。请注意,新创建的任何组都会自动放置在当前卡上。“place”命令仅用于在当前卡片上显示另一张卡片的组。

要查看一个组是否在当前卡上:

get there is a group "myGroup" of this card

您可以将任何卡片参考替换为“此卡片”。

于 2013-07-21T17:14:07.360 回答