Skip to end of banner
Go to start of banner

Using SIL™ Runner Gadget

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Looking for the documentation on the newest versions of Power Scripts for Jira 8? Click here and leave these dusty old pages behind!

When you select a script from the list, the Description field will automatically be filled in.

The Parameters field is used to pass values into your SIL™ program. To add a parameter click the Add Parameter button.

Notes

  • Parameter names must be unique, otherwise the most recent definition will overwrite the previous ones. This includes parameters with no name.
  • You can customize the gadget to be more user friendly, by asking parameters in a different way. You can find more details here.



The parameters will be passed into the program using the argv variable. The values will be available using a construct like argv["parameter_name"] or argv[position]. For the above example, the number of rockets can be retrieved using argv["rockets"] or argv[2]. You can reorder the parameters using drag and drop.

Once you run the script, the program console will be displayed.


You can use the RunnerLog routine to print info in the console as the program runs. Note that the console buffer is limited to 512 lines every ~0.5 sec and the console will only display the latest 512 lines.

Example code
runnerLog("Preparing to start a war...");

runnerLog("Building tanks...");
runnerLog("Built " + argv["tanks"] + " tanks.");

runnerLog("Gathering infantry...");
runnerLog("Gathered " + argv["infantry"] + " brave men.");

runnerLog("Fueling rockets...");
runnerLog(argv["rockets"] + " ready.");

runnerLog("Dispatching orders...");
return "Good job! The world is now at war!";

Tip

You can return as many values as you need, regardless of their type.

  • No labels