getCursorAlpha
Client-side
 Server-side
 Shared
            Needs checking  
 Hello, world
Pair: setCursorAlpha
This function is used to get the client's cursor alpha (transparency).
Syntax
int getCursorAlpha ( )Returns
- int: alpha
Returns a number between 0 and 255, where 255 is fully opaque and 0 is fully transparent.
Code Examples
 client   
 This example prints the cursor alpha to chatbox using /cursoralpha command:
addCommandHandler( "cursoralpha",    function ()        -- check if cursor is showing        if ( isCursorShowing ( ) ) then            outputChatBox( "The cursor alpha: "..getCursorAlpha( ) )        else            outputChatBox( "The cursor is not showing!" )        end    end) 
  
 