Does anyone know if there is a way a user can select a 'group' on a card and place the group anywhere they like on the card on a RunRev standalone application?
Is it a simple script?
Thanks
Daniel
Moving groups
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Moving groups
Hi Daniel,
just like any object! Put this into the script of the group:
That's it
Best
Klaus
just like any object! Put this into the script of the group:
Code: Select all
on mousedown
grab me
end mousedown

Best
Klaus
Re: Moving groups
Christ - well thats pretty easy!
What would the script be if I wanted a button that when selected it placed the group back to it's original position?
Thanks Klaus
Dan
What would the script be if I wanted a button that when selected it placed the group back to it's original position?
Thanks Klaus
Dan
Re: Moving groups
Hi Dan,
Again, much too easy
Best
Klaus
Code: Select all
on mouseup
set the loc of grp "Your group here" to X,Y
## Where X and Y are the original coordinates of the group
end mouseup

Best
Klaus