NetLogo 7.0.0-beta2:

ls:ask

ls:ask model-or-list-of-models command argument

Ask the given child model or list of child models to run the given command. This is the primary of doing things with child models. For example:

You can also ask a list of models to all do the same thing:

You may supply the command with arguments, just like you would with anonymous commands:

Note that the commands cannot access variables in the parent model directly. You must either pass information in through arguments or using ls:let.

Take me to the full LevelSpace Extension Dictionary