Page 1 of 1

create field

Posted: Mon Jul 02, 2007 7:25 pm
by haribo
Hi,
i'm new to RR, it at this time a demoversion.
now, i have a stack with an editfield. i have a button for create a field. the new field is always in the first editfield, but i want to have a second editfield with size of 617x845, please tell me howto.
ralle

Re: create field

Posted: Mon Jul 02, 2007 7:53 pm
by Lynn P.
haribo wrote:Hi,
i'm new to RR, it at this time a demoversion.
now, i have a stack with an editfield. i have a button for create a field. the new field is always in the first editfield, but i want to have a second editfield with size of 617x845, please tell me howto.
ralle
```````````````
Hi ralle ~

One way is this script. Put it into the button that will create the new field:

Code: Select all

on mouseUp
  create invisible field "myNewField"
  set the width of field "myNewField" to 617
  set the height of field "myNewField" to 845
  set the visible of field "myNewField" to true
end mouseUp
Lynn P.