最新消息:

SetCursor是NSIS更换系统或自定义鼠标光标的插件

nsis 永恒心锁 2688浏览 0评论
/*
SetCursor是NSIS更换系统或自定义鼠标光标的插件
SetCursor可以使用系统的光标如正常,箭头,十字,手形等等.
*/
!AddPluginDir "../../Plugins"
!include MUI2.nsh
OutFile SetCursorMUI.exe
# Pages...
!define MUI_COMPONENTSPAGE_NODESC
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
# Languages...
!insertmacro MUI_LANGUAGE English
# Test sections!
SectionGroup /e "System Cursors"
 Section "APPSTARTING Cursor"
 SetCursor::System APPSTARTING
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "ARROW Cursor"
 SetCursor::System ARROW
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "CROSS Cursor"
 SetCursor::System CROSS
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "HAND Cursor"
 SetCursor::System HAND
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "HELP Cursor"
 SetCursor::System HELP
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "IBEAM Cursor"
 SetCursor::System IBEAM
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "NO Cursor"
 SetCursor::System NO
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "SIZE Cursor"
 SetCursor::System SIZE
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "WAIT Cursor"
 SetCursor::System WAIT
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
SectionGroupEnd
SectionGroup /e "Custom Cursors"
 Section "Stop Watch Cursor"
 SetOutPath $EXEDIR
 SetCursor::File "$EXEDIRstopwtch.ani"
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "Green Arrow Cursor"
 SetOutPath $EXEDIR
 SetCursor::File "$EXEDIRArrow.green.cur"
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
 Section "Red Hand Cursor"
 SetOutPath $EXEDIR
 SetCursor::File "$EXEDIRHand.red.cur"
 Sleep 3000
 SetCursor::System NORMAL
 SectionEnd
SectionGroupEnd
Section "Set Position: 99, 200"
 SetCursor::Position 99 200
SectionEnd
免责声明:根据《计算机软件保护条例》第十七条规定“为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。”您需知晓本站所有内容资源均来源于网络,仅供用户交流学习与研究使用,版权归属原版权方所有,版权争议与本站无关,用户本人下载后不能用作商业或非法用途,需在24个小时之内从您的电脑中彻底删除上述内容,否则后果均由用户承担责任;如果您访问和下载此文件,表示您同意只将此文件用于参考、学习而非其他用途,否则一切后果请您自行承担,如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。丨本站为个人博客非盈利性站点,所有软件信息均来自网络,所有资源仅供学习参考研究目的,并不贩卖软件,不存在任何商业目的及用途。丨本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权BY-NC-SA协议进行授权

转载请注明:永恒心锁-分享互联网 » SetCursor是NSIS更换系统或自定义鼠标光标的插件

您必须 登录 才能发表评论!