[Thread Prev] [Thread Next]
On 20 Nov 2007 at 10:18, Alain Tougas wrote:
> Also, explore "distance"
>
> if distance "t2 > 10 [pr "yes]
>
this is understood by MW as follows:
if (distance ("t2 > 10)) [pr "yes]
you want:
if 10 < distance "t2 [pr "yes]
or:
if (distance "t2) > 10 [pr "yes]
Daniel
OpenWorld Learning
Previous by thread:
RE: MIA, Ask an Expert: abs xcor ycor and heading
Next by thread:
Re: MIA, Ask an Expert: abs xcor ycor and heading
To save an attachment to your computer, PC users should right-click (Mac users, click and hold the mouse button) on the link and then choose 'save target as' from the pop-up menu. A window will then pop up in which you can choose a location for the file.
|