Jump to content

Make something unlimited


bloober
 Share

Recommended Posts

i have make something but i want that it never end...

how i can call it again?

like i press a button and that unlimited

What do you mean about ?

While 1;Start loop unlimited until exit
;Place here what you want to repeat unlimited
WEnd
Edited by FireFox
Link to comment
Share on other sites

@robojang hehe nice :mellow: but your right everyone/everything must end anytime

@topic:

whats with this wrong:

hotkeyset ( "X" [, "1"] )

1 = the function

//edit: source:

HotKeySet ( "X" [, "Hans"] )

Func Hans

WinWaitActive ("Speedup")

sleep (1000)

Send("{Space}")

EndFunc

Edited by bloober
Link to comment
Share on other sites

Remove the [ ], the [ ] in the helpfile mean Optional.

Also, You didnt close the Func Hans()

EDIT::

HotKeySet ( "X" , "Hans" )

Func Hans()

WinWaitActive ("Speedup")

sleep (1000)

Send("{Space}")

EndFunc

Edited by AzKay
# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Link to comment
Share on other sites

can i check if i press Mouse 1 i dont want press any key?

Hi again ,

#include <Misc.au3>;add the function IsPressed

While 1
If _IsPressed("01") Then; check if primary mouse button have been pressed
;put here what you want
EndIf
Wend
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...