> If got this little inline script for inserting special characters:
> http://menuflex.tiddlyspot.com/#InsertCharacter
> Is there a way to convert it to a standalone html script?

Try this little trick:
   <<tiddler {{code goes here; '';}}>>

For your script, this would be:
------------------------
<<tiddler {{
    if (window.trackingFocus!=true) {
        window.lastFocusedElement = null;
        window.focusedElement = null;
        window.trackingFocus = true;
        document.addEventListener("focus", function(event) {
            if ((event.target.type=='textarea') && (event.target.name!
='tabSepTable'))
                window.lastFocusedElement = event.target
            }, true);
    }
'';}}>>
------------------------

enjoy,
-e


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to