GetCursorAlpha

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function is used to get alpha (transparency) from the client's cursor.

Syntax

int getCursorAlpha( )

Returns

Returns a int, 0-255, where 255 is fully opaque and 0 is fully transparent.

Requirements

This template will be deleted.

Example

-- Simple command to test the getCursorAlpha function
addCommandHandler( "cursorAlpha", 
    function ()
        if ( isCursorShowing ( ) ) then
            outputChatBox( "The cursor alpha: "..getCursorAlpha( ) )
        else
            outputChatBox( "The cursor is not showing!" )
        end
    end
)

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows