Search:

Type: Posts; User: Sailor5; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    0
    Views
    192

    [ubuntu] Embed Python Script in ODF

    Greetings!

    So I've made my Python script in the $HOME/.openoffice.org/3/user/Scripts/python/ folder. I need the script to be executed every time the document is opened. I've been Googling &...
  2. Replies
    3
    Views
    348

    [ubuntu] Re: Driver Problems

    After also installing iTunes & some other smaller things (So minus about 140MB) the used disk space is 2.10GB it also boots up extremely quickly. I'd really like to stay with that if it's still...
  3. Replies
    3
    Views
    348

    [ubuntu] Driver Problems

    Greetings!

    So I realise now that this may be more of an Windows issue then a Virtual Box one but here goes. I've installed the latest version of TinyXP (Modified version of the normal bulky XP)....
  4. Thread: Restoring iPod

    by Sailor5
    Replies
    9
    Views
    2,960

    [ubuntu] Re: Restoring iPod

    I did everything you said however the options where still greyed out. It appears I needed to run virtualbox as root before it could use USB devices. But after that everything is working now...
  5. Thread: Restoring iPod

    by Sailor5
    Replies
    9
    Views
    2,960

    [ubuntu] Re: Restoring iPod

    Thanks for your continued help but there's yet another problem. I installed VirtualBox and the addon that allows USB 2.0 and although all connected USB devices do show up in the 'USB Devices' list it...
  6. Thread: Restoring iPod

    by Sailor5
    Replies
    9
    Views
    2,960

    [ubuntu] Re: Restoring iPod

    Ah thanks! Where do I get the 'non open sourced' version? I again scooted around Google but was unable to find it.
  7. Thread: Restoring iPod

    by Sailor5
    Replies
    9
    Views
    2,960

    [ubuntu] Restoring iPod

    Greetings!

    So my iPod Touch 2g has been in dire need of a restore for some time now. But I don't have access to a Macintosh or Windows OS I only use the great Ubuntu. I do however have a Virtual...
  8. Thread: iTunes

    by Sailor5
    Replies
    3
    Views
    373

    [ubuntu] iTunes

    Greetings!

    So although it is possible to install iTunes with wine it isn't possible to restore an iPod. unfortunately none of the computers that we own have a Windows or Mac OS installation. They...
  9. Replies
    3
    Views
    784

    Re: PyQt: Exiting Process

    I've tried adding

    QtCore.QObject.connect(Form, QtCore.SIGNAL('triggered()'),
    self.Exit)

    def Exit(self):
    raise SystemExitTo my script but it still did not solve the problem. It...
  10. Replies
    3
    Views
    784

    PyQt: Exiting Process

    Greetings!

    So I've been trying to track down an answer to this question for some time now. I did receive some solutions but when I put them into practice in my own script they didn't work. I'm...
  11. Replies
    5
    Views
    2,322

    Re: PyQt: Exiting Process

    Somebody on IRC gave me this

    #!/usr/bin/python
    from PyQt4.QtCore import *
    from PyQt4.QtGui import *
    import sys

    class MyWindow(QWidget):
    def __init__(self, parent=None):
    ...
  12. Replies
    5
    Views
    2,322

    Re: PyQt: Exiting Process

    I already appear to have that.

    def Window():
    app = QtGui.QApplication(sys.argv)
    Form = QtGui.QWidget()
    ui = Ui_Form()
    ui.Chimera(Form)
    Form.show()
    ...
  13. Replies
    5
    Views
    2,322

    PyQt: Exiting Process

    Greetings!

    So currently when the 'X' button is pressed the window disappears and the process carries on. I simply need to raise SystemExit when the 'X' button is pressed and everything will be...
  14. Replies
    1
    Views
    404

    PyQt: Closing GUI

    Greetings!

    So currently when the GUI is exited the process carries on. To fix this all that needs to be done is when the GUI has been told to close we raise SystemExit. But how could I do this?...
  15. Replies
    1
    Views
    544

    QT Designer: Colours

    Greetings!

    So I'm trying to theme my PyQt application with a nice black and red style. I can change the background colour of my window and also the text and backgrounds of push buttons and text...
  16. Replies
    2
    Views
    307

    PHP: Replacment In HTML

    Greetings!

    So I've across a dilemma. To put it bluntly, if I had the following HTML source.
    <a href="http://web.com/dest.php">link</a>
    <a href="http://anotherweb.org/dest.php">link1</a>
    <a...
  17. Thread: Game Creator

    by Sailor5
    Replies
    0
    Views
    356

    Game Creator

    Greetings!

    So I've recently been wanting to create my own isometric turn based game. When I was on Windows (Very very long ago) I used Game Maker. Although I know you can get one of the previous...
  18. Replies
    1
    Views
    1,350

    Re: Python: Excluding Modules Pyinstaller

    Bump
  19. Replies
    1
    Views
    1,350

    Python: Excluding Modules Pyinstaller

    Greetings!
    So I've began using Pyinstaller over Py2Exe. However I've rather quickly ran into a problem. How do I exclude modules that I don't want, and how do I view the ones that are getting...
  20. Thread: PyGame IDE

    by Sailor5
    Replies
    1
    Views
    1,223

    Re: PyGame IDE

    Bumps. I found this http://www.pygame.org/project/601/ but that was posted years ago and there is no download link for it.
  21. Replies
    1
    Views
    297

    Python: Exiting PyQt Interface

    Greetings!

    So if you exit via the 'x' button with your PyQt application this only closes the User Interface and not the process. My question is simple how do say upon the 'x' button being pressed...
  22. Replies
    2
    Views
    592

    [SOLVED] Re: Python: PyQt & Threading

    I linked this thread in IRC and got the fix. Need to pass arguments via arg=
    T3 = Thread(target=deferred,args=(self,arg1,arg2,))
    T3.start()
  23. Thread: PyGame IDE

    by Sailor5
    Replies
    1
    Views
    1,223

    PyGame IDE

    Greetings!

    Now I know this has been probably asked a lot but it really would improve pygame. Simply automating things like creating surfaces, adding sprites and other things alike would vastly...
  24. Replies
    0
    Views
    992

    Python: Pygame - Turn Based Game

    Greetings!

    So I've recently started looking into pygame. After I've finished my current project in Python I'm wanting to pursue making a isometric metric turn based game (An x-com or ufo like game...
  25. Replies
    2
    Views
    592

    [SOLVED] Python: PyQt & Threading

    Greetings!

    So after a button has been pushed the appropriate deferred gets executed. At the end of such I then need to execute another deferred as a separate thread so as to carry on with more...
Results 1 to 25 of 107
Page 1 of 5 1 2 3 4