⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tappframestatus.tpl

📁 在手机操作系统symbina上使用的一个脚本扩展语言的代码实现,可以参考用于自己的开发
💻 TPL
字号:
rem tappframestatus.tpl
rem Series 60 test code

INCLUDE "const.oph"
INCLUDE "appframe.oxh"

DECLARE EXTERNAL

PROC tappframestatus:
	local vis%
	REM With defect 817867 "reset the default window" fixed,
	REM we don't need to use the AT 1,5 anymore...
rem	AT 1,5
	PRINT "tAppFrameStatus test code"
	PRINT "Press any key to start."
	GET
	AfSetStatusVisible%:(0)
	PRINT "Have set the status invisible."
	PRINT "Press any key."
	GET
	
	PRINT "About to start looping - press C to quit"
	WHILE 1
		PRINT datim$,
		IF vis%
			vis%=0
		ELSE
			vis%=1
		ENDIF
		afsetstatusvisible%:(vis%)
		IF GET=8
			BREAK
		ENDIF
	ENDWH
ENDP

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -