You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
myself is confusing for many users given that it seems the same asself but it isn't. If we could include in the tooltip for myself when a user mouses over it what it refers to in this context, that would be helpful. There are at least two cases:
The asking agents are in the same scope. E.g., ask turtles [ask one-of other turtles-here [set color [color] of myself. In this case we should be able to say something like "myself refers to the each turtle in the ask turtles on line X"
The asking agents are in a different procedure. E.g., in the go procedure there is code like ask turtles [spread-color] and then the spread-color procedure has ask one-of other turtles-here [set color [color] of myself. In that case, because spread-color could be called in multiple places, we won't be able to tell who exactly the asking agents are, but we could say something generic like "myself refers to whichever agent is running the spread-color procedure".
The text was updated successfully, but these errors were encountered:
myself
is confusing for many users given that it seems the same asself
but it isn't. If we could include in the tooltip formyself
when a user mouses over it what it refers to in this context, that would be helpful. There are at least two cases:ask turtles [ask one-of other turtles-here [set color [color] of myself
. In this case we should be able to say something like "myself refers to the each turtle in theask turtles
on line X"ask turtles [spread-color]
and then the spread-color procedure hasask one-of other turtles-here [set color [color] of myself
. In that case, becausespread-color
could be called in multiple places, we won't be able to tell who exactly the asking agents are, but we could say something generic like "myself refers to whichever agent is running thespread-color
procedure".The text was updated successfully, but these errors were encountered: