Jump to content

Recommended Posts

  • 3 weeks later...
  • Replies 40
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

  • 2 weeks later...
Posted (edited)

Yay, i beat 9x9 in 35 moves :) (proof attatched)

arg, it wont upload right... i'll zip it and then try.

there we go

~cdkid

Edited by Jon
AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Posted

I believe there is a Suduko somewhere in Scripts & Scraps. (by SlimShady i think)

~cdkid

AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Posted

nice nice, i just found out what a seduko puzzle is as it was extra credit in math class.. i just tried it and by accident got 4x4 in 4 moves :) im gonna try 5 now

FootbaG
Posted

I got sent this simple invertor game created in AutoIt. I think it's well done and looks pretty pro.

The attached file is a setup which installs the game and help files - the script is an exe but I've checked it and it's safe :)

your game is very goood, keep up the good work!!!
  • 2 weeks later...
  • 1 month later...
Posted

I'm new member, and my English not good :). So i post my question here, Plz help me !!!

I have problem when write code. I want computer understand that :

When right mouse click, computer will do something ( exam : sleep(500), send("{F1}") .... )

Posted

I'm new member, and my English not good :). So i post my question here, Plz help me !!!

I have problem when write code. I want computer understand that :

When right mouse click, computer will do something ( exam : sleep(500), send("{F1}") .... )

You should post in Support...

Search for _IsPressed() on the forums and read the Help File on Functions, While/WEnd Loops, Sleep(), and If/Else/Endif statements.

Ha, I haven't been on these forums since... 2006, almost. Behold, my legacy signature:My AutoIt idol is Valuater. You know you love him, too.My Stuff: D&D AGoT Tools Suite
  • 3 weeks later...
  • 2 weeks later...
  • 4 months later...
  • 2 months later...
Posted

Nice game ..

but some bugs thought i should mention it

Start game - press menu help and select about, no don't close it ..

press Ctrl A and again .. 100% CPU load .. and unable to exist program .. futher .. the HotKeys.. i think those are buggy when ... i minimize the game . i still can press the F1 key or Ctrl A and the help file will show or the about screen will display

Emiel Wieldraaijer

Best regards,Emiel Wieldraaijer

  • 1 month later...
Posted

AutoIt is great! Especially for people who eat ramen. :whistle:

MsgBox(0+64,"DISCALMER",'Although it says "Ramen Timer", use it for things other than ramen.')
GUICreate("Ramen Timer", 400, 300, 200, 100)
GUISetState(@SW_SHOW)
$timer = GUICtrlCreateLabel("   Ramen Timer",0,0,400,100)
GUICtrlSetFont($timer, 36, 450, 2 , "Tahoma")
$file = GUICtrlCreateMenu("File")
$start = GUICtrlCreateMenuitem("Start!   Alt+S",$file)
$help = GUICtrlCreateMenu("Help")
$about = GUICtrlCreateMenuitem("About...",$help)
$exit = GUICtrlCreateMenuitem("Exit!   Alt+F4",$file)
GUICtrlCreateLabel("Minutes",100,80,100,20)
$naka = GUICtrlCreateInput("3",100,100,100,20)
GUICtrlCreateUpdown($naka)
GUICtrlCreateLabel("Seconds",200,80,100,20)
$nuka = GUICtrlCreateInput("0",200,100,100,20)
GUICtrlCreateUpdown($nuka)
$heading = GUICtrlCreateInput("Note to self...",0, 200, 400, 20)
GUICtrlCreateLabel("Input the heading for the reminder.", 0, 175, 400, 20)
$message = GUICtrlCreateInput("...check on ramen.",0, 250, 400, 20)
GUICtrlCreateLabel("Input the message for the reminder.", 0, 225, 400, 20)
$example = GUICtrlCreateButton("Display Message",140 , 135, 100, 25)
HotKeySet("!s","start")
$naki = GUICtrlRead($naka)
$nuki = GUICtrlRead($nuka)
Break(0)

While 1
    $msg = GUIGetMsg()
        if $msg = $GUI_EVENT_CLOSE Then
            ExitLoop
        EndIf
        if $msg = $start Then
            $min = GUICtrlRead($naka)*60000
            $sec = GUICtrlRead($nuka)*1000
            MsgBox(0+64,"Notice","Set timer to: " & $min/60000 & " min." & $sec/1000 & " sec.")
            GUISetState(@SW_HIDE)
            Sleep($min + $sec)
            GUISetState(@SW_SHOW)
            MsgBox(0+64,GUICtrlRead($heading),GUICtrlRead($message))
        EndIf
        if $msg = $about Then
            MsgBox(0, "Timer", "Created by David Nuon. (C) 2007")
        EndIf
        if $msg = $exit Then
            ExitLoop
        EndIf
        if $msg = $example Then
            MsgBox(0+64,GUICtrlRead($heading),GUICtrlRead($message))
            MsgBox(0+64,"Hey","That is what the reminder will look like")
        EndIf
    WEnd

GUIDelete()
Func start()
            $min = GUICtrlRead($naka)*60000
            $sec = GUICtrlRead($nuka)*1000
            MsgBox(0+64,"Notice","Set timer to: " & $min/60000 & " min." & $sec/1000 & " sec.")
            GUISetState(@SW_HIDE)
            Sleep($min + $sec)
            GUISetState(@SW_SHOW)
            MsgBox(0+64,GUICtrlRead($heading),GUICtrlRead($message))
EndFunc
  • 2 months later...
Posted (edited)

AutoIt is great! Especially for people who eat ramen. :)

MsgBox(0+64,"DISCALMER",'Although it says "Ramen Timer", use it for things other than ramen.')
GUICreate("Ramen Timer", 400, 300, 200, 100)
GUISetState(@SW_SHOW)
$timer = GUICtrlCreateLabel("   Ramen Timer",0,0,400,100)
...
:D I'll need this for when I go to college!

I like the Invertor game, it's challenging and well created!

Edited by Piano_Man
My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
  • 2 weeks later...

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
  • Recently Browsing   0 members

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