FlashBotWindow function

From StealthBot Wiki Backup
Jump to: navigation, search

The FlashBotWindow function is provided by the Script Support Class to StealthBot to flash the bot window.

Development

The FlashBotWindow function was added in version 2.7 by request of LuC1Fr.

Documentation

'// FLASHBOTWINDOW
'// Flashes the bot's entry in the taskbar to get attention.
Public Sub FlashBotWindow()

    Call FlashWindow

End Sub

Summary

This function calls the API function FlashWindowEx to flash the bot's window. The call should light up the bot's entry in the task bar until the window is given focus.

Syntax

FlashBotWindow

Examples

  • Flash when an event occurs:
  • Sub Event_SomeEvent()
        FlashBotWindow
    End Sub
    

See also