2010-06-22 4 views

답변

1

은에서 : http://pys60.garage.maemo.org/doc/s60/scriptext.html

참고 :이 서비스는 '나중에 S60 셋째 판 FP2와'에서 사용할 수 있습니다.

N95는 3 판 FP1 장치입니다.

당신은 try..except 블록에서 가져 오기를 넣어이 모듈의 가용성에 따라 런타임에 응용 프로그램을 적용 할 수 있습니다 :

try: 
    import scriptext 
except ImportError: 
    # Module could not be imported, tell the user to update to a newer device 
    # or continue without it if having scriptext is not crucial to your app.