Button.title
Description
This property represents the title of the button (which is also visible as a tooltip when hovering over the button with a mouse).
Example:
Change the title of the button on each click.
//
// The background process (e.g. index.html)
//
// Set the button's properties
var properties = {
disabled: false,
title: "My Extension",
icon: "icon.18x18.png"
};
// Add the button to the browser UI
var button = opera.contexts.toolbar.createItem(properties);
opera.contexts.toolbar.addItem(button);
// Update the button title each time the button is clicked
var i = 1;
button.addEventListener('click', handleClick, false);
function handleClick() {
button.title = "You've clicked the button " + i + " time(s)";
i++;
}
This article is licensed under a Creative Commons Attribution 3.0 Unported license.
Comments
You must be logged in to write a comment. If you're not a registered member, please sign up.