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
create field
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: create field
```````````````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