按键精灵----系统插件

按键精灵----系统插件_第1张图片


ScreenW = Plugin.Sys.GetScRX()
ScreenH = Plugin.sys.GetScRY()
MessageBox "获得屏幕分辨率宽度 和高度 :" & ScreenW & "  " & ScreenH


//获取系统时间的毫秒数
time1 = Plugin.Sys.GetTime()
MessageBox time1


//获取系统日期和时间
date = Plugin.Sys.GetDateTime()
MessageBox date




//设置剪贴板内容
Call Plugin.sys.SetCLB("hello")


//获取剪贴板内容
Content = Plugin.Sys.GetCLB()
MessageBox Content


//获取系统型号
OSType = Plugin.Sys.GetOSType()
Select Case OSType
Case 0
MessageBox "windows95/98"
Case 1
MessageBox "windows Me/windowsNT/windowsXP"
Case 2
MessageBox "windows 2003"
Case Else
MessageBox "Unknow"

End Select




//在屏幕中显示文字


Call Plugin.Msg.ShowScrTXT(0, 0, 1024, 100, "屏幕打字", "0000FF")
Delay 3000
Call Plugin.Msg.HideScrTXT()


//托盘提示信息(tips)
Call Plugin.Msg.Tips("脚本开始运行")




//让主板蜂鸣器报警
Call Plugin.Media.Beep(880,200)

你可能感兴趣的:(按键精灵)