File indexing completed on 2024-05-12 16:41:19

0001 // alert tests
0002 
0003 kile.alert.information("Information alert.");
0004 kile.alert.sorry("Sorry alert.");
0005 kile.alert.error("Error alert.");
0006 
0007 var result1 = kile.alert.question("Question alert.","Alert");
0008 debug("Question alert: "+result1);
0009 
0010 var result2 = kile.alert.warning("Warning alert.","Alert");
0011 debug("Warning alert: "+result2);
0012