
muzle6074
Active Members-
Posts
149 -
Joined
-
Last visited
Everything posted by muzle6074
-
Can autoit make an invisible bot?
muzle6074 replied to miketh2005's topic in AutoIt General Help and Support
What game is this for? You can use ControlSend() and ControlMouseClick() to control windows that are not currently active -
Creating an object in Autoit
muzle6074 replied to WHICKED's topic in AutoIt General Help and Support
Are you sure AutoIt is an object orientated scripting language? I never seen these functions >_ -
Hello everyone, It has been some time since I've used AutoIt. I was wondering is there still an array limitation with this scripting language? I remember having to use temp .txt files to hold an array of items which got very annoying at times >_< Has this issue been resolved yet?
-
Thanks Melba23! I'm so sure that's exactly what I had, apparently not! haha
-
Hi everyone, I have forgotten how to write an If statement that also checks if something is NOT true. Can anybody help? Basically in this statement: If StringInStr($IE_Current_Link.href, "user") I also want to check if $IE_Current_Link does not contain the numeric value 316576. How can I do this? Regards
-
Does au3 work on windows server 2008?
muzle6074 replied to muzle6074's topic in AutoIt General Help and Support
Thank you! -
Does au3 work on windows server 2008?
-
Hi Juviqy, Do I need Outlook installed on the machine for this to work?
-
Can I attach files to an email in au3? I looked at _INetMail and _INetSmtpMail but neither looked like they had the functionality.
-
Can AutoIt be installed to a pen drive so I can use it on any computer even if it doesn't have AutoIt installed?
-
Detect New Application Window
muzle6074 replied to muzle6074's topic in AutoIt General Help and Support
Hi WideBoyDixon, Just looking over your script, given me a good insight into how I could implement something similar, thanks. -
Detect New Application Window
muzle6074 replied to muzle6074's topic in AutoIt General Help and Support
Hi @Xenobiologist Yes, I did think of this but it isn't an efficient method of doing this. How ever if there is no function that detects a new window then I will probably have to do this. Do you know how to check sum a process list against another and then extract the difference? @Skruge No I haven't because the windows I want to detect could be called anything. -
Hi everyone, I was wondering how to detect if the user opens up an application? Regards
-
Hi everyone, I need a key logger to use on our server at work. More users are using the machine recently and I want to keep track of what users are doing. More ideally would be to take screen shots on key words specified in the script and save the images to a directory. I've learned C# .Net and made a very low-level key logger that only captures key strokes and logs them to a file. I've even got it to email me the logs but this isn't necessary since most of the maintenance we do is on-site during the night shift. Anyone know where I can start? Regards
-
LOL! Nice script.
-
While 1 If WinExists("Element Client") Then Send{+[1]};targets party member #1 Sleep("1000");waits a second Send{[F2]};change this to your hotkey for heal Sleep("1000") Send{+[2]};targets party member #2 Sleep("1000") Send{[F2]};change this to your hotkey for heal Sleep("1000") Send{+[3]} Sleep("1000") Send{[F2]} Sleep("1000") Send{+[4]} Sleep("1000") Send{[F2]} Sleep("1000") Send{+[5]} Sleep("1000") Send{[F2]} Sleep("1000") EndIf Wend By using while 1 (always true) it will continuously loop through the script. Also remember to close all open statements like your If (EndIf) and While (Wend). Hope this helps, Regards
-
Hi everyone, Just wondering if anyone has done some basic memory reading and/or editing. If you have could you please point me in the right direction for where to start it would be greatly appreciated! Regards
-
How do I create a dynamic array?
muzle6074 replied to muzle6074's topic in AutoIt General Help and Support
Thank you all for your input! -
Hi all, Long time no scripting, how can I declare a dynamic array in au3? By this I mean an array that I can just keep re-adding values to without changing the size of the array. Regards muzle6074
-
After some quick testing it does return a small collection of items even if the page does not load. Thank you Dale I have used the code you suggested to test @extended. Thank you all for your contribution! Regards --Alex
-
Hi amokoura, I ran the script and canceled the page load to try replicate the error but this happened: The requested action with this object has failed.: If $IE_Links.Count = 0 Then If $IE_Links.Count ^ ERROR Code: $IE_Links = _IELinkGetCollection($IE) If $IE_Links.Count = 0 Then MsgBox(0, "", "No collection") EndIf $IE_Topic = $IE_Links.Item(24) _IENavigate($IE, $IE_Topic.href)
-
$IE_Topic = $IE_Links.Item(24) _IENavigate($IE, $IE_Topic.href) If the page fails to load and the collection of links is not stored in $IE_Topic then _IENavigate throws an error. How can I prevent executing the _IENavigate from running if there is no collection of links in $IE_Topic? Regards --Alex
-
@Nevin It worked @ my friends school using an old version of DOS I don't need this for malicious purposes Can au3 send a packet buffer greater than 65500?
-
Can au3 send a ping packet with a buffer size greater than 65500?
-
Can someone please help me with iniread?
muzle6074 replied to muzle6074's topic in AutoIt General Help and Support
*Edit - NVM, sorry im so noob today thx for ur help