Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
blocks:tasks [2019-05-12 19:50] mattias [Operators] |
blocks:tasks [2025-02-24 19:48] (current) admin [Tasks and Expressions] |
||
---|---|---|---|
Line 33: | Line 33: | ||
While the //Trigger// is the mere occurrence of the specified event (such as the time being 8:00 in the morning), the //Trigger Condition// can apply arbitrarily complex conditions on top of this event in order to decide whether to actually start the task. For instance, in the case of a time-of-day trigger, you can specify that it should only start the task if it's Saturday and a certain Block is playing on a particular Spot. | While the //Trigger// is the mere occurrence of the specified event (such as the time being 8:00 in the morning), the //Trigger Condition// can apply arbitrarily complex conditions on top of this event in order to decide whether to actually start the task. For instance, in the case of a time-of-day trigger, you can specify that it should only start the task if it's Saturday and a certain Block is playing on a particular Spot. | ||
- | A //Trigger Condition// often uses the predefined variable named // | + | A //Trigger Condition// often uses the predefined variable named // |
===== JavaScript Expressions ===== | ===== JavaScript Expressions ===== | ||
Line 224: | Line 224: | ||
==== Predefined Variables ==== | ==== Predefined Variables ==== | ||
- | In addition to all system properties of you Blocks system, you also have access to the following predefined variables in tasks and their trigger condition field: | + | In addition to all system properties of your Blocks system, you also have access to the following predefined variables in tasks and their trigger condition field: |
* **trigger** contains the value of whatever triggered the task. | * **trigger** contains the value of whatever triggered the task. | ||
Line 232: | Line 232: | ||
* If the triggering mode is “Time of Day”; it's a JavaScript Date object. | * If the triggering mode is “Time of Day”; it's a JavaScript Date object. | ||
- | * If the triggering mode is “Property Change” it's a number, boolean | + | * For “Property Change” it's a number, boolean, string |
+ | * For " | ||
If no trigger is assigned to the task, the value of //trigger// is undefined, and should not be used. Note that //trigger// will contain the current value of the tasks trigger even if the task was started by other means, such as manually clicking the //play// arrow next to the task's name, or by setting the task's //running// property to true. | If no trigger is assigned to the task, the value of //trigger// is undefined, and should not be used. Note that //trigger// will contain the current value of the tasks trigger even if the task was started by other means, such as manually clicking the //play// arrow next to the task's name, or by setting the task's //running// property to true. | ||
Line 259: | Line 260: | ||
==== Property References ==== | ==== Property References ==== | ||
- | As seen in some of the example | + | As seen in some of the examples |
Some properties are //read only//. An example of such a read only property is the // | Some properties are //read only//. An example of such a read only property is the // |