Difference between revisions of "FlashBotWindow function"
(Created page with 'The FlashBotWindow function is provided by the Script Support Class to StealthBot to flash the bot window. ==Development== The FlashBotWindow function was added in v…') |
m (1 revision imported) |
(No difference)
|
Latest revision as of 08:20, 1 December 2017
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