Note that there are some explanatory texts on larger screens.

plurals
  1. POLoop a GUI interface in AutoHotKey
    primarykey
    data
    text
    <p>Im attempting to make a macro using AutoHotKey and im trying to have a loop create as many GUI's as the user specifies, the only problem is that when "return" is called after the "OK:" line, the GUI exits the loop as well as the current GUI. Therefore the loop is only running the first time before the entire app is exited? </p> <p>My code is below, any help would be greatly appreciated! thanks!</p> <pre><code>n = 0 Loop: { n := n + 1 Gui, Add, Button, x1 y174 w110 h40 gOK, Button Gui, Add, Text, x1 y34 w90 h20 , City #%n% Name: Gui, Add, Edit, x91 y34 w200 h20 vCity, Edit Gui, Add, Text, x1 y84 w60 h20 , Farm 1 Gui, Add, Edit, x61 y84 w70 h20 vFarm1, Edit Gui, Add, Text, x1 y134 w60 h20 , Farm 2 Gui, Add, Edit, x61 y134 w70 h20 vFarm2, Edit Gui, Add, Edit, x221 y84 w80 h20 vFarm3, 807`, 341 Gui, Add, Edit, x221 y134 w80 h20 vFarm4, Edit Gui, Add, Text, x151 y84 w70 h20 , Farm 3 Gui, Add, Text, x151 y134 w70 h20 , Farm 4 Gui, Add, Text, x321 y84 w70 h20 , Text Gui, Add, Edit, x391 y84 w80 h20 vFarm5, Edit Gui, Add, Text, x321 y134 w70 h20 , Text Gui, Add, Edit, x391 y134 w80 h20 vFarm6, Edit Gui, Add, Text, x491 y84 w70 h20 , Text Gui, Add, Edit, x581 y84 w80 h20 vFarm7, Edit Gui, Add, Text, x491 y134 w70 h20 , Text Gui, Add, Edit, x581 y134 w80 h20 vFarm8, Edit Gui, Show, x321 y200 h257 w745, GrepoFarm ~~~~~ Hockeyman271 ~~~~~~ return GuiClose: ExitApp return Ok: ; label triggered by the button Gui, submit, nohide ; hide or nohide depends on what you want FileCreateDir, %A_WorkingDir%\Data\%City% if ErrorLevel MsgBox ERROR Creating Directory for "%City%" FileAppend, %City%, %A_WorkingDir%\Data\%City%\city.txt FileAppend, %Farm1%, %A_WorkingDir%\Data\%City%\farm1.txt FileAppend, %Farm2%, %A_WorkingDir%\Data\%City%\farm2.txt FileAppend, %Farm3%, %A_WorkingDir%\Data\%City%\farm3.txt FileAppend, %Farm4%, %A_WorkingDir%\Data\%City%\farm4.txt FileAppend, %Farm5%, %A_WorkingDir%\Data\%City%\farm5.txt FileAppend, %Farm6%, %A_WorkingDir%\Data\%City%\farm6.txt FileAppend, %Farm7%, %A_WorkingDir%\Data\%City%\farm7.txt FileAppend, %Farm8%, %A_WorkingDir%\Data\%City%\farm8.txt Gui, Destroy return } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload