Jump to content

Skrip

Active Members
  • Posts

    2,219
  • Joined

  • Last visited

About Skrip

  • Birthday January 15

Profile Information

  • Member Title
    Psychonaut
  • Location
    Look behind you...

Recent Profile Visitors

1,815 profile views

Skrip's Achievements

Universalist

Universalist (7/7)

1

Reputation

  1. Soo this script appears to work sometimes, but other times it returns an array error at line 22. I'm not sure what's going on, anyone want to take a stab at it? #include <Array.au3> Dim $kSpace[36] For $i = 0 To 9; Fill numbers 0-9 $kSpace[$i] = $i Next For $i = 10 To 35; Fill Letters A-Z $kSpace[$i] = Chr($i + 55) Next $n = 3 Dim $k[$n] If $n > 0 Then $n = $n - 1 EndIf For $m = 0 To $n For $i = 0 To 5 $k[$m] = $k[$m] & $kSpace[Random(0, 36, 1)] Next Next _ArrayDisplay($k) Error: .au3 (22) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: $k[$m] = $k[$m] & $kSpace[Random(0, 36, 1)] $k[$m] = $k[$m] & ^ ERROR
  2. Why not have the program poll what the current deal is on each website and display them on a GUI instead of having to go through and manually look at each one?
  3. I would love to see a form element align as well - kinda how Koda has done it. http://koda.darkhost.ru/wiki/doku.php/koda:documentation:edit_align
  4. Impressive work I would just like to say thank you very much for this amazing project, and thank you for posting it on the english forums as well. We have been waiting for something like this for so long. 5 stars.
  5. Can you further explain how this works?
  6. Very nice, I hope you continue work on this, until it is something fully functional and workable!
  7. Ah ha! Thanks so much for your help, fixed the problem
  8. Look closer, ProcessClose is commented out ;~ ProcessClose("java.exe")
  9. Full code was now posted in OP. Anyone have any ideas?
  10. GuiConstantsEx.au3 ; Events and messages Global Const $GUI_EVENT_CLOSE = -3 Global Const $GUI_EVENT_MINIMIZE = -4 Global Const $GUI_EVENT_RESTORE = -5 Global Const $GUI_EVENT_MAXIMIZE = -6 Global Const $GUI_EVENT_PRIMARYDOWN = -7 Global Const $GUI_EVENT_PRIMARYUP = -8 Global Const $GUI_EVENT_SECONDARYDOWN = -9 Global Const $GUI_EVENT_SECONDARYUP = -10 Global Const $GUI_EVENT_MOUSEMOVE = -11 Global Const $GUI_EVENT_RESIZED = -12 Global Const $GUI_EVENT_DROPPED = -13
  11. I will change that for version one, thanks Brew - I forgot about that method. Also, does anyone know what the issue is with StdInWrite?
  12. Yes, and I like my design better, just gotta get it workin! And no, that just says whether to start or stop it. That can go 0 after the button works.
  13. Code Removed Okay, I am trying to make a minecraft server GUI. I am attempting to figure out how to run commands through the window, and cannot seem to get STDIN to work correctly. Anyone see the problem? Basically, the button gets clicked - server starts, clicked again - send stop command
  14. Very nice example and tutorial. This will seriously come in handy.
×
×
  • Create New...