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