As far as I can see all the ways to message users in the browser such as notify, popups, alerts and modals all require second tiddler to format the display.
Is there any other way to present a timed or dismissible message to the user without another tiddler?
I want the ability to quickly inform the user within buttons and actions however the ActionLogWidget only writes to the console.
I would like to use it for design and debugging then in the final solution, as a result I do not want to create a “message tiddler” every time.
Thanks @pmario for this answer however I am looking for a momentary message as seen with the Save Wiki button, small yellow box that leaves in a short time.
*A little research suggests this is in Javascript only.
Someone who knows javascript should be able to write a short javascript macro with a parameter for the message.
No intermediate tiddler is needed, or desired.
Being able to set the timeout period would be nice.
Rendering the message first would be even better to allow links etc…but not essential.
Assume the “notify” tiddler contained the appropriate variable <<message>> or <<content>>.
This will fail, <$action-sendmessage $message="tm-notify" $param="notify" message="My Message" />
This will not <$action-sendmessage $message="tm-notify" $param="notify" content="My Message" />
This is why I asked what appeared to be a “stupid question”.