List of public pages created with Protopage

Untitled 1

Rich sticky notes

Sticky note

function Trim(TRIM_VALUE){
if(TRIM_VALUE.length < 1){
return"";
}
TRIM_VALUE = RTrim(TRIM_VALUE);
TRIM_VALUE = LTrim(TRIM_VALUE);
if(TRIM_VALUE==""){
return "";
}
else{
return TRIM_VALUE;
}
} //End Function

function RTrim(VALUE){
var w_space = String.fromCharCode(32);
var v_length = VALUE.length;
var strTemp = "";
if(v_length < 0){
return"";
}
var iTemp = v_length -1;

while(iTemp > -1){
if(VALUE.charAt(iTemp) == w_space){
}
else{
strTemp = VALUE.substring(0,iTemp +1);
break;
}
iTemp = iTemp-1;

} //End While
return strTemp;

} //End Function

function LTrim(VALUE){
var w_space = String.fromCharCode(32);
if(v_length < 1){
return"";
}
var v_length = VALUE.length;
var strTemp = "";

var iTemp = 0;

while(iTemp < v_length){
if(VALUE.charAt(iTemp) == w_space){
}
else{
strTemp = VALUE.substring(iTemp,v_length);
break;
}
iTemp = iTemp + 1;
} //End While
return strTemp;
} //End Function

Untitled sticky note

1.會換佈景主題
2.會變換老師指定的桌布
3.會將網頁加到我的最愛
4.會設定滑鼠指標
5.會將畫面抓下來存成背景
6.會重新開機
7.會切換老師指定的輸入法
8.會用注音輸入法輸入老師要求的文字
9.會放大縮小視窗
10.會設定螢幕保護程式
11.可以說出螢幕上電腦圖片的名字
12.會將時鐘的畫面顯示出來
13.會上雅虎網站找到史萊姆的第一個家
14.會正常關閉電腦
15.會將特定網頁設成"我的首頁"