1<apex:page>
2
3 <A HREF="#" onClick="testBlinkCustomConsoleComponentButtonText();return false">
4 Click here to blink the button text on a custom console component</A>
5
6 <apex:includeScript value="/support/console/47.0/integration.js"/>
7 <script type="text/javascript">
8 function testBlinkCustomConsoleComponentButtonText() {
9 //Blink the custom console component button text
10 sforce.console.blinkCustomConsoleComponentButtonText('Hello World', 10, function(result){
11 if (result.success) {
12 alert('The text blinking starts!');
13 } else {
14 alert('Could not initiate the text blinking!');
15 }
16 });
17 }
18 </script>
19</apex:page>