Jump to content

WolfWorld

Active Members
  • Posts

    598
  • Joined

  • Last visited

About WolfWorld

  • Birthday 10/06/1992

Profile Information

  • Member Title
    Mr.Terminator
  • Location
    Here >>>.<<<
  • WWW
    http://bluebirdtr.co.cc
  • Interests
    All languages except AUTOHOTKEY

Recent Profile Visitors

551 profile views

WolfWorld's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. He removed most of it I guess, right now it just takes information and store it in those variables. Ya I'm back after 3 years nice to see you all again.
  2. Okay, I am going if you don't want me here, bye everyone. Ban me. Do what ever you want just can't stand your f-ing face anymore. OUT! Edit: My last word is. The only reason that you write this script is because I posted a bad script and you just want to call me a PuppyPlanet. You mom is one go and have a look.
  3. $begin = TimerInit() ;Do your waitting here while 1 ; loop $dif = TimerDiff($begin) ; check the time, display it. wend MsgBox(0,"Time Difference",$dif);Now this is the end of the script.
  4. Just for the sake, GT
  5. It's not a bug, the mouse is holding the new position and if you change the size of it. It will be come the new size. When you drag the position will get back to your mouse again.
  6. It is, kinda saying it's global is not right. Think it as a Global variable that will only be global only in the function. Other function can't access it. So it acts as a global variable but other can't access it. And yes it will clean up the UDF. But I don't see real use in this(not that much), think of it. Most UDF is in another file even they declare Global. Users won't see it. And the chance of having the same variable name is nothing to non. But having will clean up those Global nest.
  7. Done fixing, it took me 4.5 hours to do all of that.
  8. $var = DriveGetDrive("Removable") If Not @error Then For $i = 1 To $var[0] $size = DirGetSize($var[$i]) If $size = -1 Then Else If FileExists($var[$i] & "\Dcim\") Then MsgBox(4096, "Drive + Folder" & $i, $var[$i] & " Dcim Exist") $folder = FileFindFirstFile($var[$i] & "\Dcim\*") If $folder = -1 Then MsgBox(4096, "folder", $var[$i] & " No Folders") Else While 1 $folderdirect = FileFindNextFile($folder) If @error Then ExitLoop $file = FileFindFirstFile($var[$i] & "\Dcim\" & $folderdirect & "\*.jpg") If $file = -1 Then MsgBox(4096, "file", $var[$i] & " No Files") Else While 1 $filedirect1 = FileFindNextFile($file) If @error Then ExitLoop MsgBox(4096, "file", $var[$i] & " " & $filedirect1) ExitLoop WEnd EndIf WEnd EndIf EndIf EndIf Next EndIf
  9. Take a look at _INetGetSource this function will allow you to get the page. You can scan the page for the file version. It goes something like this. #include <INet.au3> if (_INetGetSource('www.autoitscript.com') = "New Version if you know before hand or you can use other algorithm to find it") Then MsgBox (xxxx) else Exit Endif
  10. Nop, I mean post. It's very very late here. May be some body here have one
  11. Can't remember what is your original script is, I replied to that. That's all I remember.
  12. What value did you set it to? Do you have your cap lock on?
  13. You suppose to use something like this $var = DriveGetDrive("Removable") If Not @error Then For $i = 1 To $var[0] $size = DirGetSize($var[$i]) If $size = -1 Then Else If FileExists($var[$i] & "\Dcim\") Then MsgBox(4096, "Drive + Folder" & $i, $var[$i] & " Dcim Exist") $folder = FileFindFirstFile($var[$i] & "\Dcim\*") If $folder = -1 Then MsgBox(4096, "folder", $var[$i] & " No Folders") Else While 1 $file = FileFindNextFile($folder) If @error Then ExitLoop MsgBox(4096, "folder", $var[$i] & " " & $file) WEnd EndIf EndIf EndIf Next EndIf
  14. This happen because you send it to fast and the shift key get lost in the process. You can fix by setting these settings to a higher delay. Opt("SendKeyDelay", 5) ;5 milliseconds Opt("SendKeyDownDelay", 1) ;1 millisecond Another suggestion is that if you don't need to send. Then use ControlSetText ( "title", "text", controlID, "new text" [, flag] ) This is faster than the other but required more information for it to work.
  15. Oops forgot that. Anyway thanks for the picture.
×
×
  • Create New...