
06-10-2007, 03:32 AM
|
|
Will work for food. Maybe
|
 |
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
|
|
|
Doesn't quotations turn it into a string?
So extent = "32 32"; would be a string so you wouldn't be able to access it as an array, so:
if (extent[1]==32)
would be false. extent = {32,32}; would be an array, so
if (extent[1]==32)
would return true. |
|
|
|