Alert() or Notification for set time
Hi
We are using scripts to auto design.
There is a load time of around 3-5 seconds to complete the script and all of the changes.
At present we have an alert() box which notifies once edits have been completed.
The issue is it requires a click and an extra step.
Is there a way to display a notification for example for 1 second and then it disappears.
Almost like a timed alert() but without the OK button or ok button disabled?
In standard javascript i would use something like
setTimeout( function ( ) { alert( "Design Complete!" ); }, 1000 ); //displays msg in 10 seconds
Thanks