On Jun 15, 2011, at 10:44 AM, Eric Pettersen wrote:

from chimera import runCommand
runCommand("2dlabels change timer text '%.1f ns'" % (mdInfo['frame'] *  
27.5))

This was so close to being correct. :-(  Since frame numbers start at 1, the last part needs to be:

% ((mdInfo['frame']-1) * 27.5))

--Eric