Jump to content

lplease delete


epicfail
 Share

Recommended Posts

yeah but i want to makeit i to a func like Loop(10) so i can put it next to what i want to loop

In that case you could also create some kind of UDF of your liking, such as:

Repeat("Example", 5)

;==This is your UDF==
Func Repeat($FunctionName, $LoopAmount)
    For $LoopNumber = 1 to $LoopAmount
    Call($FunctionName)
    Next
EndFunc
;==End of UDF==

Func Example()
            MsgBox(0,"Example","This is an example function.")
EndFunc

(Edit is won't load? :-S)

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...