Incrementing a variable

Anything beyond the basics in using the LiveCode language. Share your handlers, functions and magic here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
vamp07
Posts: 21
Joined: Mon Apr 10, 2006 2:12 pm

Incrementing a variable

Post by vamp07 » Fri Mar 27, 2009 4:54 pm

Is there a more elegant way of incrementing a variable then this?

put i + 1 into i

sturgis
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1685
Joined: Sat Feb 28, 2009 11:49 pm

Re: Incrementing a variable

Post by sturgis » Fri Mar 27, 2009 4:57 pm

You can do
add 1 to i
vamp07 wrote:Is there a more elegant way of incrementing a variable then this?

put i + 1 into i

vamp07
Posts: 21
Joined: Mon Apr 10, 2006 2:12 pm

Post by vamp07 » Fri Mar 27, 2009 4:58 pm

Thanks!!!

Post Reply