setWindowFlashing | Multi Theft Auto: Wiki Skip to content

setWindowFlashing

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function allows the window to flash in the Windows taskbar.

Syntax

setWindowFlashing ( )

Code Examples

client

A command that allows the player to flash their window three times after one second.

addCommandHandler("flash",
function()
setTimer(setWindowFlashing, 1000, 1, true, 3)
end
)