Is there a reason why the graphic objects of type button do not have a DragStart script?
We have some applications where we would like to be able to drag attributes from a button to another object.
DragStart script for Buttons
- mkoller
- Posts:741
- Joined: Fri Sep 17, 2010 9:03 am
Re: DragStart script for Buttons
Probably because it's very uncommon to start a drag on a button.
The button has a special behavior (press/enter/leave/release) which might make it complicated.
You could use a rectangle Shape instead.
The button has a special behavior (press/enter/leave/release) which might make it complicated.
You could use a rectangle Shape instead.
- RudiKreiner
- Posts:198
- Joined: Mon May 16, 2011 2:10 pm
Re: DragStart script for Buttons
I guess that makes sense. Thanks for the tip to use a rectangle instead.