Quote:
Originally Posted by SemperFideles
What are the conditionals for:
1. Day of the week? (e.g. Today is Saturday)
2. Hour of the day? (e.g. Time is between 3:00 pm and 5:00 pm)
|
SemperFideles, I've been wondering the same thing, so I just started experimenting and found the answer to your first question:
Code:
[[(date("l"))==Saturday]]Test...[[/(date("l"))==Saturday]]
Still working on the second one. Theoretically it should be
Code:
[[(date("G"))==13]]Test...[[/(date("G"))==13]]
but that's not working. I'll report back later.