?? run.bat
字號:
@echo off
rem This file runs the corresponded demo.
if "%OS%" == "Windows_NT" setlocal
set DEMO=SMSDemo
if not exist .\%DEMO%.jad (
echo *** Run this batch file from its location directory only. ***
goto end
)
if not exist .\%DEMO%.jar (
echo *** You should build the %DEMO%.jar first. ***
goto end
)
rem Enter the common 'bin' directory of WTK.
cd ..\..\..\bin
rem Run a WTK with the specified demo.
emulator -Xdescriptor:..\apps\%DEMO%\bin\%DEMO%.jad
rem Return back to 'bin' directory of the demo.
cd ..\apps\%DEMO%\bin
:end
if "%OS%" == "Windows_NT" endlocal
rem do a "pause" always
pause
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -