(the activeWindow).title = newTitle
end
JavaScript syntax example:
function titleChange(spriteRef, newTitle){
_player.activeWindow.title = newTitle
}
statusTextChange(spriteRef, newText) - This handler is invoked when the text that
needs to be displayed in the status bar has changed.
Lingo example:
on statusTextChange spriteRef , newText
member("statustext").text = newText
end
JavaScript syntax example:
function statusTextChange(spriteRef, newText){
member("statustext").text = newText
}
navigateBackState(spriteRef, enabled) - Called to indicate the current state of
BACK navigation in the browser history, usually when a page finishes loading, or
whenever necessary. Your code can use this information to enable or disable the
BACK button in your interface.
Lingo example:
on navigateBackState spriteRef , enabled
if enabled=true then
Online Help
36
Comentarios a estos manuales