![]() |
|
|||||||
| Plugin/Script (Python) Development Developers forum for XBMC Python Plugins/Scripts. Scripters/coders only! Not for posting feature requests, bugs, or end-user support requests! |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
Junior Member
Join Date: Jan 2004
Posts: 11
![]() |
# hi, i am trying to write a script that would auto execute upon xbmc's opening. this script will ask for a password, if the password doesn't equal that something, then xbmc will exit the program.
----------------------------------------------------------- # imports import xbmc,xbmcgui from time import * #initial stuff dialog = xbmcgui.dialog() pdialog = xbmcgui.dialogprogress() sleeptime = 0 shutdowntime = 0 doit = 0 pwl = " # defs # def getuserinput(): pdialog.create('password','press cancel to enter password.') pdialog.update(100/10) if pdialog.iscanceled(): pdialog.close() keyboard = xbmc.keyboard('') keyboard.domodal() if (keyboard.isconfirmed()): return keyboard.gettext() else: return 0 pwl = getuserinput() if pwl != "eminaz" doit = 1 #waits.... and finally shut down the box def doshutdown(): global doit if doit == 1: xbmc.player().stop() pdialog.close() xbmc.shutdown() #main def main(): showtimesdialog() doshutdown() main() ------------------------------------------------- i didn't write all of that, to be honest. i borrowed some of the code from vultain and alx. i don't know much about pything, but it is kind of like flash actionscripts, which i am experienced with. |
|
|
|
|
|
#2 |
|
Junior Member
Join Date: Jan 2004
Posts: 11
![]() |
any help would be appreciated.
|
|
|
|
|
|
#3 |
|
Senior Member
Join Date: Mar 2004
Posts: 174
![]() |
where is the code for showtimesdialog()? the main function calls it but we don't get to see what it does.
also, the forum must've messed up some of the indentation so it is hard to know what the logic is exactly... |
|
|
|
|
|
#4 | |
|
Member
Join Date: Mar 2004
Posts: 74
![]() |
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Does anyone can write a python to view web? | hibaby | Plugin/Script (Python) Help and Support | 1 | 2005-07-27 19:29 |
| Possible to write a server via the python api? | tharvey | Plugin/Script (Python) Development | 7 | 2005-02-08 07:21 |
| Cddb / imd write .tbn file? | sarnman | XBMC Feature Suggestions | 2 | 2004-12-20 00:51 |
| Does XBMC write to the Xbox's EEPROM? | tullm | XBMC General Discussion | 3 | 2004-10-12 19:47 |
| os.write() messed up? | madtw | Plugin/Script (Python) Development | 2 | 2004-05-07 18:45 |