Move Object

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
itay1023
Posts: 68
Joined: Fri Sep 28, 2012 1:44 pm

Move Object

Post by itay1023 » Wed Feb 26, 2014 4:19 pm

Hi all :)

How to I move an object 100 pixels upwards?

Best,
Itay :)

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Move Object

Post by Klaus » Wed Feb 26, 2014 4:29 pm

Hi itay,

hm, a hard one! 8)

1.
...
put the loc of btn "a button" into tLoc
subtract 100 from item 2 of tLoc
set the loc of btn "a button" to tLoc
...

2. animated:
...
move btn "a button" rel 0,-100 in 1 secs
...

Best

Klaus

Post Reply