Page 1 of 1

script to place group into group

Posted: Wed Mar 22, 2017 11:44 pm
by monki
The place command can place a group onto different cards, is there a similar command for placing a group into another group, something like: place "Group 2" into "Group B"?

Re: script to place group into group

Posted: Thu Mar 23, 2017 12:10 pm
by Klaus
Hi Monki,

no, unfortunately there isn't.

This should work, of my head, so better make a test first! :D

Code: Select all

...
## "group1" need to get into "group2"
lock screen
select grp "group1"
CUT
start editing group "group2"
PASTE
stop editing group "group2"
unlock screen
...
Best

Klaus

Re: script to place group into group

Posted: Thu Mar 23, 2017 4:31 pm
by monki
Klaus wrote:Hi Monki,

no, unfortunately there isn't.

This should work, of my head, so better make a test first! :D

Code: Select all

...
## "group1" need to get into "group2"
lock screen
select grp "group1"
CUT
start editing group "group2"
PASTE
stop editing group "group2"
unlock screen
...
Best

Klaus
Thanks, Klaus. That should work.

Re: script to place group into group

Posted: Thu Mar 23, 2017 7:15 pm
by jmburnod
That should work.
Klaus's brain works like a charm
It tested (script, not Klaus's brains) and it works fine. 8)
I suggest to check if sharedbehavior or backgroundbehavior of groups = true
Best regards
Jean-Marc