I managed to show a Heads up Display in the viewport that shows the framenumber. I intended to have this number in the playblasted scene for reference but unfortunatly it does not update during rendering (means it stays at the framenumber of the current frame before rendering started) and it is not shown in the rendered sequence. Other Heads up Displays like the framerate are shown and updated correctly. Have you an idea for a solution? Maybe the name of the event that triggers the updating process or a flag which has to be set see the display in the rendered sequence?
Regards, Stephan.
Just run this script I use expression to update HeadupDisplay
headsUpDisplay -section 2 -block 2 -label "Frame" -command "currentTime -q" HeadupDisplayExp;expression -s "headsUpDisplay -r HeadupDisplayExp";
Thanks. That's exactly what I needed.