Jump to content

AceLoc

Active Members
  • Posts

    535
  • Joined

  • Last visited

About AceLoc

  • Birthday 10/02/2005

Profile Information

  • Member Title
    Clock, Lock Its Ace Loc!~
  • Location
    The Netherlands, Sub Seven, Hackerboard.de
  • WWW
    http://underconstruction.com

AceLoc's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. @Gafrost which version of autoit do you use at the moment? @Nova did you see this one already? #include <IE.au3> Opt("WinTitleMatchMode", 2) $a = "- Microsoft Internet Explorer" Do Sleep(10) Until WinExists($a) $b = WinGetHandle($a) WinActivate($B) $c = _IEAttach ($b, "HWND") _IENavigate ($c, "www.autoitscript.com")
  2. Still doesnt work Gafrost but you gave me an idea this one works perfectly: #include <IE.au3> Opt("WinTitleMatchMode", 2) $a = "- Microsoft Internet Explorer" Do Sleep(10) Until WinExists($a) $b = WinGetHandle($a) WinActivate($B) $c = _IEAttach ($b, "HWND") _IENavigate ($c, "www.autoitscript.com") Although my first script is way faster
  3. Whats wrong with mines ?
  4. Doesnt work gafrost
  5. Opt("WinTitleMatchMode", 2) HotKeySet("{F2}", "_Exit") $a = "- Microsoft Internet Explorer" Do Sleep(10) Until WinExists($a) ControlSend($a, "", "Edit1", "www.autoitscript.com{ENTER}") Func _Exit() WinKill($a) Exit EndFunc If you really want the IE way, Then i will figure it out for you
  6. Oh, Thanks for sayin that didnt even notice edit: Ehmm, In my eyes i visitted this site twice after my 'big theatrics' but okay.. i will but not now 8)
  7. Great, I like this script Thanks for making it
  8. More information would be fine.. Window name -- What to do exactly etc.. Screenshot and Window Info tool stats. Thanks
  9. Removed
  10. I love wikipedia
  11. Here's a working SMTP emailer, You can just copy & Paste.. or check why yours doesnt work. $a = "Your SMTP Server" $b = "Email Address (Random)" $c = "Password of the (Random) Email" Emailx("From@Example.com", "To@Example.com", "Subject", "Text Body") Func Emailx($d, $e, $f, $g) $h = ObjCreate ("CDO.Message") With $h .Subject = $f .Sender = $d .From = $d .To = $e .TextBody = $g ;.AddAttachment ("");req full dictonairy EndWith With $h.Configuration.Fields .Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $a .Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 .Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = $b .Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $c .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 .Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 .Update EndWith $h.Send Return EndFunc ;==>Emailx
  12. Dynamic-link library (DLL), also known as dynamic link library (without the hyphen), is Microsoft's implementation of the shared library concept in the Microsoft Windows (and OS/2) operating systems. These libraries usually have the file extension DLL, OCX (for libraries containing ActiveX controls), or DRV (for legacy system drivers). The file formats for DLLs are the same as for Windows EXE files that is, Portable Executable (PE) for 32-bit Windows, and New Executable (NE) for 16-bit Windows. As with EXEs, DLLs can contain code, data, and resources, in any combination. In the broader sense of the term, any data file with the same file format can be called a resource DLL. Examples of such DLLs include icon libraries, sometimes having the extension ICL, and font files, having the extensions FON and FOT.
  13. You didnt understand that. Here you go; DirMove("C:\examplefolder", "C:\program files\autoit3", 1)
  14. cdc is a music file
×
×
  • Create New...