Jump to content

Search the Community

Showing results for tags 'forever'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello, I have a script, its working well. When I start running the script the random website is loading and then the browser is hiding. (That's OK for me.) Then the script is sleeping for a random time. (That's OK for me.) My problem is: After the next website is loading, then the browser is visible again. I can see the browser for a few moments. (until the website is finish the loading.) My question is: How can I solve this problem? (Hide IE browser forever :)) Code: Global $var[4] $var[1] = "http://google.com" $var[2] = "http://google.com" $var[3] = "http://google.com" $x = Random(1, 3, 1) ShellExecute($var[$x]) Local $hWnd = WinWait("[CLASS:IEFrame]", "Google", 10) WinSetState($hWnd, "", @SW_HIDE) Sleep(Random(5000, 8000, 1)) Global $var[4] $var[1] = "http://google.com" $var[2] = "http://google.com" $var[3] = "http://google.com" $x = Random(1, 3, 1) ShellExecute($var[$x]) Local $hWnd = WinWait("[CLASS:IEFrame]", "Google", 10) WinSetState($hWnd, "", @SW_HIDE) Sleep(Random(5000, 8000, 1)) Thanks for helping!
×
×
  • Create New...