Jump to content

Orks236

Members
  • Posts

    10
  • Joined

  • Last visited

Orks236's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. After your last post I thought you wern't going to relese this, I'm so relieved. How did you do that GUI in autoit? I need to find some examples of that!
  2. Too bad getting to the script source is way too easy
  3. He probably ment 3.2.0
  4. As I said before the including function is messed up, take out the include and it will work. This brings it down to one error that isnt hard to fix, it forgot to obfuscate a call to Phi() Just take the call out of the region so you know the function name #region Phi() #region Global $Fib1 = 0 Global $Fib2 = 1 $Window = GUICreate("Fibonacci", 150, 50, -1, -1) $LabelFib = GUICtrlCreateLabel("0", 10, 10, 120, 15) $LabelPhi = GUICtrlCreateLabel("0", 10, 25, 120, 15) GUISetState() While 1 GUICtrlSetData($LabelFib, Fibonacci()) GUICtrlSetData($LabelPhi, Phi()) Sleep(500) WEnd Func Fibonacci() Local $Temp $Temp = $Fib2 + $Fib1 $Fib1 = $Fib2 $Fib2 = $Temp Return($Fib2) EndFunc Func Phi() Return($Fib2/$Fib1) EndFunc
  5. The version on the website updated from .7 to .8, but the download link dosnt work.
  6. Keep up the hard work, this is a great addition to autoit and i'd hate to see it abandoned!
  7. Yea the include function is bugged. Taking what I need from the includes takes away the 600+ errors I get.
  8. The debugger assumes you have a beta folder for your autoit3.exe, I just extract the beta files over the stable ones instead of making a new folder EDIT: it would also be nice if it didnt auto exit when script is finished
×
×
  • Create New...