Jump to content

lolp1

Active Members
  • Posts

    274
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

lolp1's Achievements

Universalist

Universalist (6/7)

0

Reputation

  1. Topic, does anyone know of some method to block WinActivate call from another program?
  2. If you are privileged on XP, does it just run with out any pop ups or anything unlike vista where you get a pop asking if your sure you want to run as a admin?
  3. Hello, I don't have WindowsXP to test it on, but what happens if you run #RequireAdmin on windowsXP and they are not admin, and what happens if they are if anything.(Curios since the command was designed for windows vista but the change log says it can be used for XP to)
  4. Hello, Does anyone have an example of how to use _IsPressed to check for key combos and special chars? For example I went to detect when some one presses Shift + x at the same time, or shift + 2 at the same time - so I can detect special characters. Do I need to write some UDF for this or has it been done?
  5. For what I needed I needed the PID from the window name - I did a google search/auto it help file and found nothing auto it related, hence my fix using the DllFunc call of auto it...
  6. Doh! Well, I found another clever method, wish I'd have known about that 10 minutes ago I used something along the lines of $pid = DllCall("user32.dll", "int", "GetWindowThreadProcessId", "hwnd", $hWnd, "int_ptr", 0) EDIT: I also suggest the Help file be updated, seems like it didn't list many ways and thats why I was confused.
  7. Topic, I am looking for some method to do this but I can't find. Anyone of some help?
  8. Ok, but how is "f" getting the func to click on "Google search"? How do I go about getting the proper form name for the button I want to press?
  9. Hi, need some help using the _IEFormSubmit. On some forums I use, before you make a post you need to of course click the Add Reply button, and I'm trying to auto-mate 1 post. I seem to have some problems with _IEFormSubmit In the example it shows: #include <IE.au3> $oIE = _IECreate ("http://www.google.com") $oForm = _IEFormGetObjByName ($oIE, "f") $oQuery = _IEFormElementGetObjByName ($oForm, "q") _IEFormElementSetValue ($oQuery, "AutoIt IE.au3") _IEFormSubmit ($oForm) How ever I'm not sure why it's using, $oForm = _IEFormGetObjByName ($oIE, "f") What is the F for? The button name is Add Reply if thats any help...
  10. Good explaing, works pefect, now I can work on storing my variable. First thing that comes to mind is using FileWriteLine FileReadLine to log them, as well as store a random link once it collects them to a variable, I'll post how it turns out or if I find a better way.
  11. Hi, been a long time since I've used auto it and forgot a lot of stuff. First of all what I'm trying to do here, is get a list of links found by _IELinkGetCollection , and filter them to only ones with a certain text, and then store a random one with the text I specify (theres always several of them). I was able to get the list of all links, and log them to a txt file. How would I go about filtering them by a certain text they have in it so I can store my random variable? EDIT: Example, _IEGetLinkCollection gives this put put: Test.com Test1.com Test2.com Test.net Test2.net I'd like to be able to filter out the .coms and only log the .nets, so I can then select a random one and store it to a variable.
  12. Hi, ccan some one post an example on using autoitx's iniread in a C++ file?
  13. I've reverted to an older version of auto-it and it compiles fine, never did find out what got updated that made it not work....
×
×
  • Create New...