moving mouse?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dado

    #1

    moving mouse?

    I'm implementing a "self-tutorial" into my app,
    and wondering if there's a way of moving a mouse
    cursor on command? probably using sys,os modules?
  • Daniel Schüle

    #2
    Re: moving mouse?

    dado wrote:[color=blue]
    > I'm implementing a "self-tutorial" into my app,
    > and wondering if there's a way of moving a mouse
    > cursor on command? probably using sys,os modules?[/color]

    sys doesn't mean [operating] system
    it's completely Python related,
    the intepreter itself
    you can use it to see how many referenced does a object
    like 1 have .. or check the current recusrion depth .. or
    see the encoding of stdin, stdout
    only such things

    os module is operating system related
    it provides many lowlevel functions .. os.open etc

    I dont know of a module which provides things you are looking for

    Regards, Daniel

    Comment

    • dado

      #3
      Re: moving mouse?

      dado wrote:[color=blue]
      > I'm implementing a "self-tutorial" into my app,
      > and wondering if there's a way of moving a mouse
      > cursor on command? probably using sys,os modules?[/color]

      I also figured this would be useful for making
      'remote desktop' kinda thing...

      Comment

      • jmdeschamps@gmail.com

        #4
        Re: moving mouse?


        dado wrote:[color=blue]
        > dado wrote:[color=green]
        > > I'm implementing a "self-tutorial" into my app,
        > > and wondering if there's a way of moving a mouse
        > > cursor on command? probably using sys,os modules?[/color]
        >
        > I also figured this would be useful for making
        > 'remote desktop' kinda thing...[/color]

        Naturally, you can always implement a simulation of this yourself in
        most GUI tools you would be using. I guess the complexity, thoroughness
        of your tutorial may mean that its unfeasable, business wise, but
        technologically it doesn't seem like rocket science...

        Comment

        Working...