Stage::getCurrentMillisecond()
Returns the current millisecond.
Examples
import org.openpatch.scratch.*;
public class StageGetCurrentTime {
public StageGetCurrentTime() {
Stage myStage = new Stage(600, 240);
while (myStage.getTimer().forMillis(3000)) {
int year = myStage.getCurrentYear();
int month = myStage.getCurrentMonth();
int day = myStage.getCurrentDay();
int weekday = myStage.getCurrentDayOfWeek();
int hour = myStage.getCurrentHour();
int minute = myStage.getCurrentMinute();
int second = myStage.getCurrentSecond();
int millisecond = myStage.getCurrentMillisecond();
int daysSince2000 = myStage.getDaysSince2000();
myStage.display(
hour
+ ":"
+ minute
+ ":"
+ second
+ ":"
+ millisecond
+ " "
+ year
+ "-"
+ month
+ "-"
+ day
+ " ("
+ weekday
+ ")"
+ " "
+ daysSince2000);
}
myStage.exit();
}
public static void main(String[] args) {
new StageGetCurrentTime();
}
}
Syntax
Java
.getCurrentMillisecond()
Scratch
Return
int