Condition Reference List


None Back to top


This is the default setting when you add each action. It means there are no conditions so the action will always be run.



Until Back to top

'Until' will cause liquid media to repeatedly execute your action until special circumstances are present, then Liquid Media will move to the next action on the list.

Repeatedly execute the action until the expression is 'True'.



While Back to top


A 'While' command tells Liquid Media to repeatedly execute your action only in certain conditions. For example, you may want an effect on your company logo, but only while the mouse cursor is over it.

Repeatedly execute action while an expression is correct (or 'true').

For example, 'while(variable=3)actor.restart'.

'variable' will be checked and if it equals three, then the command (in this case actor.restart) will repeatedly execute, until 'variable' does not equal 3 anymore.



If Back to top

IF conditions behave like while conditions, except that when an 'IF' statement evaluates to be true it will only execute the action ONCE, then Liquid Media will continue running the subsequent actions on the list.

For example, If(Expression).

  • The defined Variable will be checked. If the expression is 'true' (the actual value of the variable during the presentation equals the value that will start the action) then the action will be executed ONCE and Liquid Media moves to the next action in the list.

  • However if the expression turns out to be 'false' (the actual value of the variable during the presentation does not equal the value that will start the action) then the action will not be executed, it will be skipped.

Execute action if the current value of a variable is equal to a predefined value.