Moving Item in a canvas [message #345052] |
Tue, 02 September 2008 03:51  |
dynz18
Messages: 5 Registered: May 2008
|
Junior Member |
|
|
---- Just asking a question----
Is there any possibility that i can move item in canvas "programatically"?
--- thanks for any reply..,
|
|
|
Re: Moving Item in a canvas [message #345139 is a reply to message #345052] |
Tue, 02 September 2008 06:57   |
 |
Littlefoot
Messages: 21825 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Yes, by using the SET_ITEM_PROPERTY built-in. For example, to move an item into the upper left corner (x = 0, y = 0 coordinates), you'd useset_item_property('po_ename', x_pos, 0);
set_item_property('po_ename', y_pos, 0);
|
|
|
|