Zegar w Power Ppoint
jak dodać interaktywny zegar w power point, tak aby wyswietlala sie aktualna godzina podczas wyswietlania prezentacji, komputer nie bedzie podlączony do internetu. Proszę o pomoc.
Odpowiedzi: 1
nie ma takiej mozliwosci Jedyne co proponuje to prezentacje zapisac w html a potem na stronie dodac zegar np
1. Zegar na stronie www [ZOBACZ] [DO GÓRY]
Zegarek zostanie wyświetlony w polu formularza. Żeby się jednak pokazał nie moźna zapomnieć o o wstawieniu w body informacji o skrypcie:
W nagłówku:
//Define a couple of global variables.
var timerID = null
var timerRunning = false
function stopTimer(){
//stop the clock
if(timerRunning) {
clearTimeout(timerID)
timerRunning = false
}
}
function startTimer(){
// Stop the clock (in case it's running), then make it go.
stopTimer()
runClock()
}
function runClock(){
document.clock.face.value = timeNow()
//Notice how setTimeout() calls its own calling function, runClock().
timerID = setTimeout("runClock()",1000)
timerRunning = true
}
function timeNow() {
//Grabs the current time and formats it into hh:mm:ss am/pm format.
now = new Date()
hours = now.getHours()
minutes = now.getMinutes()
seconds = now.getSeconds()
timeStr = ((hours > 12) ? hours – 12 : hours)
timeStr += ((minutes
timeStr += ((seconds
timeStr += (hours >= 12) ? " PM" : " AM"
return timeStr
}
// End of custom functions, stop hiding code ––>
W Body:
1. Zegar na stronie www [ZOBACZ] [DO GÓRY]
Zegarek zostanie wyświetlony w polu formularza. Żeby się jednak pokazał nie moźna zapomnieć o o wstawieniu w body informacji o skrypcie:
W nagłówku:
//Define a couple of global variables.
var timerID = null
var timerRunning = false
function stopTimer(){
//stop the clock
if(timerRunning) {
clearTimeout(timerID)
timerRunning = false
}
}
function startTimer(){
// Stop the clock (in case it's running), then make it go.
stopTimer()
runClock()
}
function runClock(){
document.clock.face.value = timeNow()
//Notice how setTimeout() calls its own calling function, runClock().
timerID = setTimeout("runClock()",1000)
timerRunning = true
}
function timeNow() {
//Grabs the current time and formats it into hh:mm:ss am/pm format.
now = new Date()
hours = now.getHours()
minutes = now.getMinutes()
seconds = now.getSeconds()
timeStr = ((hours > 12) ? hours – 12 : hours)
timeStr += ((minutes
timeStr += ((seconds
timeStr += (hours >= 12) ? " PM" : " AM"
return timeStr
}
// End of custom functions, stop hiding code ––>
W Body:
Strona 1 / 1