Jump to content

sayru

Members
  • Posts

    11
  • Joined

  • Last visited

sayru's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. is there anyways to call regedit and .reg files by packaging the .reg files inside the autoit exe ?
  2. would it still be silent with UAC ?
  3. I have a regedit (.reg) file setting and would like it to apply it to my other computers. when I run the .reg file, it prompts for confirmation. how can I make the registery addition smooth and silent in autoit3 ?
  4. I am looking to doing load testing of activex product which must be loaded in IE. How can I click on the activeX bar that appears when I visit the target page, and sendkeys ? is it possible to do all of this in the background ? thank you ~ !
  5. FileCopy didn't work.... i didn't know it accepted URL ?
  6. how can i make auto-it download a file from given URL, and run it ? I want the file to be saved automatically to Program File. Once it's downloaded, I need to run the file. I found this code but it prompts to save the file. $FileURL = "http://somesite.com/setup.exe" $FileName = "Setup.exe" $FileSaveLocation = FileSaveDialog("Save Location...",@ScriptDir,"All (*.*)",18,$FileName) $FileSize = InetGetSize($FileURL) InetGet($FileURL,$FileName,0,1) ProgressOn("","") While @InetGetActive $Percentage = @InetGetBytesRead * 100 / $FileSize ProgressSet($Percentage,"Downloaded " & @InetGetBytesRead & " of " & $FileSize & " bytes","Downloading " & $FileName) Sleep(250) Wend ProgressOff()
  7. how can i extract the href attribute of a link ? <a href="somesite.com"> extract somesite.com
  8. using _IELinkClickByText() i can click on links fine, but is it possible to prevent IE browser window from popping up whenever script runs ? i mean the window browser should be hidden from taskbar and such ?
  9. is it possible for AutoIT to hide an active window it's clicking on ? for example, sending keys and clicks to a window process which is not visible minimized or in system tray. it should show up in taskmgr tho.
  10. hi very new to autoit...discovered this gem today. basically will autoit script/exe still run on a minimized running process ? for example, notepad is minimized will autoit still do its magic ? or does notepad need to be focused and active ? if not doable on autoit, how can i achieve this with other programs ? also, off topic question, does autoit also able to click on links and buttons on websites ? if not is there something that can accomplish this ? how can i find resources on using autoit api with vb6 ? thank you !!!
×
×
  • Create New...