Page 2 of 2
Re: Group functions
Posted: Thu Jul 11, 2013 11:18 am
by shaosean
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
Posted: Sun Apr 20, 2014 3:30 pm
by atout66
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.
Re: Group functions
Posted: Thu Jul 04, 2019 9:08 am
by richmond62
Gosh, it's 2019 . . .
. . . trying to shove an image into a group . . .
Re: Group functions
Posted: Thu Jul 04, 2019 9:44 am
by [-hh]
Not worth an own command:
Code: Select all
on mouseUp
cut image "myImg"
start editing background "myGroup"
paste
stop editing background "myGroup"
end mouseUp
or even shorter (by Jean-Marc, see above):
Code: Select all
on mouseUp
put the long id of img "myImg" into lid
copy image "myImg" to background "myGroup"
delete lid
end mouseUp
For drag and drop between groups there is moreover (by Michael K.)
https://forums.livecode.com/viewtopic.p ... 58#p178858
Re: Group functions
Posted: Thu Jul 04, 2019 6:45 pm
by richmond62
Copying a control into a group is NOT moving it, it is copying it.
Logic, old bean!
Re: Group functions
Posted: Thu Jul 04, 2019 7:07 pm
by [-hh]
After copying and then deleting the original it is "shoved into the group" ... is your pain (located wherever) now gone?
Re: Group functions
Posted: Thu Jul 04, 2019 7:56 pm
by Klaus
[-hh] wrote: Thu Jul 04, 2019 7:07 pmAfter copying and then deleting the original it is "shoved into the group" ... is your pain (located wherever) now gone?
Hardly!
