SetCursor Script Header: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 3: Line 3:
== Description ==
== Description ==


This is a script header based on code by Razor and DOCa Cola.
<p>This is a script header based on code by Razor and DOCa Cola.
I've taken the original code and converted it into macros.
I've taken the original code and converted it into macros.
The cursor is also now updated immediately without having to move the mouse cursor.
The cursor is also now updated immediately without having to move the mouse cursor.</p>
 
<p>'''Note''': This uses the System.dll plugin.</p>


== Usage ==
== Usage ==
<highlight-nsis>!inclide SetColor.nsh</highlight-nsis>
Include the script header. This must be at the top of you installer script.


<highlight-nsis>${SetSystemCursor} [cursor_id]</highlight-nsis>
<highlight-nsis>${SetSystemCursor} [cursor_id]</highlight-nsis>

Revision as of 17:10, 12 April 2006

Author: Afrow UK (talk, contrib)


Description

This is a script header based on code by Razor and DOCa Cola. I've taken the original code and converted it into macros. The cursor is also now updated immediately without having to move the mouse cursor.

Note: This uses the System.dll plugin.

Usage

!inclide SetColor.nsh

Include the script header. This must be at the top of you installer script.

${SetSystemCursor} [cursor_id]

[cursor_id] can be one of the following:

  1. OCR_NORMAL
  2. OCR_IBEAM
  3. OCR_WAIT
  4. OCR_CROSS
  5. OCR_UP
  6. OCR_SIZENWSE
  7. OCR_SIZENESW
  8. OCR_SIZEWE
  9. OCR_SIZENS
  10. OCR_SIZEALL
  11. OCR_NO
  12. OCR_HAND
  13. OCR_APPSTARTING
${SetFileCursor} [cursor_file]

[cursor_file] must be the full or relative path to a .CUR or .ANI file.

Examples

${SetSystemCursor} OCR_CROSS
 
${SetFileCursor} 'my_cursor.ani'

Download

File:SetCursorHeader.zip