>> im just wondering if this java code can be converted to director
>> lingo.
>>
>> int i
>> for (i=0, i<100, i++)
>> { int j
>> for (j=0, j<5, j++)
>> { .... then do something ....
>> }
>> }
>>
>repeat with i = 0 to 99
> repeat with j = 0 to 4
> -- do something
> j = j + 1 -- sorry, no increment operator in Lingo
> end repeat
> i = i + 1
>end repeat
Kerry, you're incrementing by 2!
-A.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]