Advertisement
Guest User

Untitled

a guest
Jan 5th, 2014
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function myFFInfo(clip c, string "bonusText") {
  2.  
  3. bonusText = default(bonusText, "")
  4.  
  5. c.frameevaluate("""
  6.        fftempstring = ""
  7.        bonusText = """" + bonusText + """"""")
  8.  
  9. frameevaluate("""fftempstring = fftempstring + \
  10. "Frame Number: " + string(current_frame) + " of " + string(framecount()) + "
  11. Picture Type: " + chr(eval("FFPICT_TYPE")) + "
  12. " + bonusText """, after_frame=true)
  13.  
  14. return scriptclip("subtitle(fftempstring)", after_frame=true)
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement