我必須將標準時間轉換爲動作中的傳統時間。這是我到目前爲止。我將衷心感謝您的幫助。如何在ActionScript 3.0中將標準時間HH:MM:SS轉換爲傳統時間
// This line makes the button, btnConvert wait for a mouse click
// When the button is clicked, the convertTime function is called
btnConvert.addEventListener(MouseEvent.CLICK, convertTime);
// This line makes the textinput wait for a mouse click
// When this component is clicked, the clearLabels function is called
txtinStandard.addEventListener(MouseEvent.CLICK, clearLabels);
// Declare Global Variables
var traditionalTime:String; // traditional time
// This is the convertTime function
// e:MouseEvent is the click event experienced by the button
// void indicates that the function does not return a value
function convertTime(e:MouseEvent):void
{
// declare the variables
var standardTime:String; // standard time entered by user
standardTime = txtinStandard.text; // get standard time from user
convertToTraditional(standardTime); // call the convertToTraditional function
// output an appropriate message in the label
lblOutput.text = standardTime + " is equivalent to " + traditionalTime;
}
// This is function convertToTraditional
// s – is the standard time
// It determines the traditional time based on the value of s
function convertToTraditional(s:String){
}
// This is the clearLabels function
// e:MouseEvent is the click event experienced by the textInput
// void indicates that the function does not return a value
function clearLabels(e:MouseEvent):void
{
lblOutput.text = "";
txtinStandard.text = "";
}
你能澄清你的標準時間與傳統的時間是什麼意思? – Marcela