Alert.addToList() |
Previous Top Next |
Alert.addToList( symbol, description, foreColor, backColor )
This function generates a pop-up alert using the text and colors passed as parameters.
Parameters
symbol |
symbol for which to trigger the alert |
description |
text description of alert |
foreColor |
foreground color for alert |
backColor |
background color for alert |
Usage
var bCondition = false;
function main() {
...
...
if ( bCondition==true ) {
Alert.addToList( "IBM", "Breakout!", Color.green, Color.black );
...
}
}