View Single Post
  #1  
Old 06-23-2009, 01:17 AM
adele adele is offline
Member
 
Join Date: Nov 2008
Posts: 1
Adding Multimedia --inverted image

Hi,I'm trying to add an AVI video to this script.But the screen showed inverted image when I press the "m" key,I mean it inverted left to right,following is my script:

Code:
def mykeyboard(key):
  # Play a movie on the screen
  if key == 'm':
    mymovie = viz.add('finalfantasy.avi.')
    mymovie.loop(viz.ON)
    mymovie.play()
    screen.texture(mymovie)
Reply With Quote