Jump to content

RacecarSoft

Active Members
  • Posts

    26
  • Joined

  • Last visited

Profile Information

  • Location
    New Orleans LA

RacecarSoft's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. It just makes the script stop. EDIT: Problem solved, maybe it's about time we all use the good ol' command prompt for winrar.
  2. I don't remember seeing any errors but I'll look again now... No errors that I see. I get this at the end: ...19:21:01 AutoIT3.exe ended.rc:0 19:21:02 AutoIt3Wrapper Finished Exit code: 0...
  3. I'm trying to make my script pause until WinRAR finishes making an archive, but instead AutoIt just quits, what's wrong? EDIT: SOLVED! Solution: Use this: If Not IsDeclared("$winrardir") Then Dim $winrardir;Do not put rar.exe at the end. If Not IsDeclared("$filetoarchive") Then Dim $filetoarchive $winrardir = "path to winrar or where rar.exe is";Example, C:\Program Files\WinRAR $filetoarchive = "file you want to be put in a rar archive";Example, "C:\Downloads\file.file" (for files) or "C:\files" (for folder) Run("cmd.exe") WinWait("C:\WINDOWS\system32\cmd.exe") If Not WinActive("C:\WINDOWS\system32\cmd.exe", "") Then WinActivate("C:\WINDOWS\system32\cmd.exe") Send('cd ' & $winrardir & '{ENTER}rar a "' & $filetoarchive & '"{ENTER}')
  4. I have updated the main post.
  5. @Everyone here. I have completed making KeyPress 1.1.
  6. It dosen't say that here.
  7. Didn't I already? I am gonna check out the code from my previous version and see if I can build version 1.1 off of that.
  8. I am extremely bad at using anything with GUI's, that is why I used Koda in the first place.Can you just take my source code and edit that to make it work, because I don't understand gui stuff.
  9. Not enough parameters error.If I put "Text to type" in between those I get the same also.
  10. Put $foo where $Edit1 is?
  11. I updated the source code on the first post.
  12. That works but then if I type something else than 'Text to type.' in the dialog then it don't work.
  13. I actually found out it is not fixed (other words your are right).How can I fix it now? By the way, I am using AutoIt beta.
×
×
  • Create New...