Jump to content

doomsday123

Active Members
  • Posts

    20
  • Joined

  • Last visited

Everything posted by doomsday123

  1. Was woundering if anyone had some spare time and wanted to make a AIM ORC. I want to be able to put it on a friends computer and be able to type something into aim and have it execute a program. Just an idea. if anyone is willing to do it, it would be great thanks.
  2. Is there a way I can add a .exe file to the start up list? Thanks.
  3. Ok well i got it to work with comcast Thanks for all your help guys!
  4. ok i enabled pop access but i still get the same error. what should i do to get around this? I have email accounts with Hotmail, Yahoo, and Comcast.
  5. Ok, when i try to send myself an email without reading from a file here is what i get in the log. 2005.02.02 08:07:04 (Wed)------------Start of Session----------------- Blat lite v2.2.2 (build : Feb 26 2004 10:36:21) 2005.02.02 08:07:34 (Wed): Error: Wait a bit (possible timeout). 2005.02.02 08:07:34 (Wed): SMTP server error 2005.02.02 08:08:04 (Wed): Error: Wait a bit (possible timeout). 2005.02.02 08:08:04 (Wed): Error: Connection to server was dropped. 2005.02.02 08:08:04 (Wed): Error: Error sending data. 2005.02.02 08:08:04 (Wed): Error: Error sending data. 2005.02.02 08:08:04 (Wed): Error: Connection to server was dropped. 2005.02.02 08:08:06 (Wed): Sending C:\DOCUME~1\Dakota's\LOCALS~1\Temp\~mailtext.tmp to doomsday123@gmail.com 2005.02.02 08:08:06 (Wed): Subject: Log File 2005.02.02 08:08:06 (Wed): Login name is doomsday123@gmail.com 2005.02.02 08:08:36 (Wed): Error: Wait a bit (possible timeout). 2005.02.02 08:08:36 (Wed): SMTP server error 2005.02.02 08:09:06 (Wed): Error: Wait a bit (possible timeout). 2005.02.02 08:09:06 (Wed): Error: Connection to server was dropped. 2005.02.02 08:09:06 (Wed): Error: Error sending data. 2005.02.02 08:09:06 (Wed)-------------End of Session------------------ It cant connect to the smtp server. i am using these settings for gmail. _EmailSend("smtp.gmail.com:465", "doomsday123@gmail.com", "doomsday123@gmail.com", "Log File", "Hello", "C:\temp.temp") If you could help me out i would appreciate it. Thanks
  6. Ok, when i try to get the body of the email from a text file it gives me this error in the LogFile. 2005.02.01 15:06:50 (Tue)------------Start of Session----------------- Blat lite v2.2.2 (build : Feb 26 2004 10:36:21) 2005.02.01 15:06:50 (Tue): error reading C:\security.file, aborting 2005.02.01 15:06:50 (Tue)-------------End of Session------------------ I cant figure out why.
  7. Bahhh. Cant get the darned thing to work. It gives me a Func Format error every time. Here is my code. _EmailSend("smtp.gmail.com:465", "doomsday123@gmail.com", "doomsday123@gmail.com", "LogFile", "C:\security.file", ""C:\temp.tmp") What did i do wrong?
  8. Yeah i get a 404 error too. I would also like to give it a look at.
  9. Lol. I knew that... Or atleast I like to think so. Thanks !
  10. Yeah thats pretty cool. Good Job Man.
  11. Thanks. I figured it had to do something with the version i was running. One more question before i go. Do i have to have Autoit installed on the computer i want to run the compiled script on or is there anyway to do it without autoit installed? Thanks.
  12. Thx Hehe missed that... Got rid of that error but now im getting an error with this line. $aR = DllCall("user32", "int", "GetAsyncKeyState", "int", $hexKey) The error reads... ------------------------------------------------------------------------------------ Line 187 (File "C:\Documents and Settings\User\Desktop\File.au3"): $aR = DllCall("user32", "int", "GetAsyncKeyState", "int", $hexKey) $aR = ^ERROR Error: Unknown function name. ------------------------------------------------------------------------------------ What else am i missing lol.
  13. How come when i copy that code to my autoitv3 script i get the error... ---------------------------------------------------------------------------------- Line 11 (File "C:\Documents and Settings\User\Desktop\File.au3") If _IsPressed(41) Then If ^ERROR Error: Unkown function name. ----------------------------------------------------------------------------------- Anyone know why?
  14. Haha ! Thank you sir. I looked over that
  15. Very cool. What i am trying to work towards is to be able to press TAB and for it to move the mouse to every location i hit SPACE at in the same order. Here is what i have so far but it wont work with more than one location. It only goes to the last location I pressed space at. Dim $counter= 0 Dim $Xar[50] Dim $Yar[50] HotKeySet ("{ESC}", "MyExit") HotKeySet ("{SPACE}", "Clip") HotKeySet ("{TAB}", "Play") While 1 $pos= MouseGetPos () $color= PixelGetColor ($pos[0], $pos[1]) $hexit= Hex ($color, 6) ToolTip ("X: " & $pos[0] & " " & "Y: " & $pos[1] _ & @lf & _ "RGB Color under mouse: 0x" & $hexit, $pos[0] + 10, $pos[1] + 10) Sleep (10) WEnd Func Clip () $pos= MouseGetPos () $Xar[$counter]= $pos[0] $Yar[$counter]= $pos[1] EndFunc Func Play () $i= 0 While $i <= $counter MouseMove($Xar[$i], $Yar[$i]) ; Sleep(100) $i= $i + 1 Wend EndFunc Func MyExit () Exit EndFunc If you could help it would be great. Thanks.
  16. Lol. you must have missed it but i did try it. I posted the code that i tried and for some reason it is giving me an error...
  17. But what I am wanting to do is to store it in an array every time i click space. I want to do this so i can later make it to where it will go to every mouse position i hit spacebar at. Anyone know how i could do this? EDIT: Hehe Ok THanks
  18. Im trying to add the X pos and the Y pos to arrays each time I hit the space bar but i cant get it to work. global $i= 0 global $X[50] global $Y[50] HotKeySet ("{ESC}", "MyExit") HotKeySet ("{SPACE}", "Clip") While 1 global $pos= MouseGetPos () $color= PixelGetColor ($pos[0], $pos[1]) $hexit= Hex ($color, 6) ToolTip ("X: " & $pos[0] & " " & "Y: " & $pos[1] _ & @lf & _ "RGB Color under mouse: 0x" & $hexit, $pos[0] + 10, $pos[1] + 10) Sleep (10) WEnd Func Clip () $X[i]= pos[0] $Y[i]= pos[1] $i= ($i + 1) EndFunc Func MyExit () Exit EndFunc
  19. That will work for a mouse click or a key press?
  20. What I want to do is to save the X and Y location of the mouse when the user does a single Left Click. How would i do this? Thanks
×
×
  • Create New...