Name of month: I want to display the name of the month for a given date. I tried the following, without success:

if V[today_m=01]
   Text (30,50) "January"
endif

Please use an intermediary variable as follows:

Set V[month] "&V[today_m]"

if V[month=01]

  Text (30,50) "January"

endif

The variables "today_..." are dealt with in the section "System variables" in our documentation:

http://www.synactive.com/docu_e/doc_systemvariables.html

The variables can be used in expressions &V[today_...], but they cannot be queried directly with if Q[today_..=...].