Group functions
Moderator: Klaus
Re: Group functions
The changes would be better off in the engine, using native controls, but until then, you could write what you need and not have to worry about it..
Re: Group functions
You surely all of you know that already, but as a beginner I found that by using the <Project Browser>, I can move object by drag and drop from one group to an other.
That was my 2 cents
Kind regards, Jean-Paul.
That was my 2 cents

Kind regards, Jean-Paul.
Discovering LiveCode Community 6.5.2.
-
- Livecode Opensource Backer
- Posts: 10080
- Joined: Fri Feb 19, 2010 10:17 am
Re: Group functions
Gosh, it's 2019 . . .
. . . trying to shove an image into a group . . .
. . . trying to shove an image into a group . . .
Re: Group functions
Not worth an own command:
or even shorter (by Jean-Marc, see above):
For drag and drop between groups there is moreover (by Michael K.)
https://forums.livecode.com/viewtopic.p ... 58#p178858
Code: Select all
on mouseUp
cut image "myImg"
start editing background "myGroup"
paste
stop editing background "myGroup"
end mouseUp
Code: Select all
on mouseUp
put the long id of img "myImg" into lid
copy image "myImg" to background "myGroup"
delete lid
end mouseUp
https://forums.livecode.com/viewtopic.p ... 58#p178858
shiftLock happens
-
- Livecode Opensource Backer
- Posts: 10080
- Joined: Fri Feb 19, 2010 10:17 am
Re: Group functions
Copying a control into a group is NOT moving it, it is copying it.
Logic, old bean!
Logic, old bean!
Re: Group functions
After copying and then deleting the original it is "shoved into the group" ... is your pain (located wherever) now gone?
shiftLock happens