Thank you Mans! I love it when people help out clueless people like me :-)
Interestingly enough, just before checking Google Groups today, and after reading the error report for about the 20th time, I saw that "place" was not defined. Somehow I found on Eric's site that this was a bug in versions of TW before 2.4.3 and his CoreTweaks would solve that. Alas, the entire coreTweaks plugin left me with an empty screen. I hacked around a bit and extracted the code I thought would work, and it did! Place is now defined and the menu works fine. Below is the code I used. Also, I read the first entry you linked me to, and Eirc said to solve the same problem with the InlineJavaPlugin (or something like that). It worked for that person. I already had it installed, so that was not my problem. I do have a number of other older plugins installed that mess around with the layout and toolbars, so I am not surprised that not all works with my TW as it should. Anyways, it works now and I am very happy! Cheers, Grant MY SHORTER VERSION OF coreTweaks: /*** |Name|CoreTweaks| |Source|http://www.TiddlyTools.com/#CoreTweaks| |Version|| |Author|Eric Shulman| |License|http://www.TiddlyTools.com/#LegalStatements| |~CoreVersion|2.2.0| |Type|plugin| |Description|a small collection of overrides to TW core functions| This tiddler contains small changes to TW core functions that correct or enhance standard features or behaviors. ***/ //{{{ // calculate TW version number - used to determine which tweaks should be applied var ver=version.major+version.minor/10+version.revision/100; //}}} //{{{ if (ver<2.43) { window.coreTweaks_invokeMacro = window.invokeMacro; window.invokeMacro = function(place,macro,params,wikifier,tiddler) { var here=story.findContainingTiddler(place); window.tiddler=here?store.getTiddler(here.getAttribute ('tiddler')):tiddler; window.place=place; window.coreTweaks_invokeMacro.apply(this,arguments); } } //}}} On Nov 15, 6:10 pm, Måns <[email protected]> wrote: > Hi Grant > > You'll have to download all tiddlers accociated with QuickEditPlugin > to make it work. > > http://dl.dropbox.com/u/1064531/screendmp/empty/QuickEdit.html#QuickE... > > The Mptw-vertical needs you to edit the systemtiddler MptwTheme to > insert theQuickEdittoolbar into the edittoolbar.. > > Eric explains some stuff regardingQuickEditand > istallation:http://groups.google.dk/group/tiddlywiki/browse_thread/thread/a9e2c1b... > related > stuff:http://groups.google.dk/group/tiddlywiki/browse_thread/thread/1ac01d8... > > http://groups.google.dk/group/tiddlywiki/browse_thread/thread/f60e838... > > regards Måns Mårtensson > > On 15 Nov., 13:43, "[email protected]" <[email protected]> wrote: > > > Still would love it if some one of you Guru's out there might have an > > idea what is going on with this (I think) extra button at the start of > > the button row... > > > Cheers, > > > Grant > > > On Nov 11, 12:36 am, "[email protected]" <[email protected]> wrote: > > > > Hi, > > > I am trying to useQuickEditwith an MPTW version from Tiddlyspot. I > > > probably has modified it over the time so its not pure, but it has > > > been working fine. > > > > I just addedQuickEditand if I do not download the > > > StyleSheetShortcuts, I get an extra button at the start of the menu > > > that reports: > > > > Error while executing macro <<tiddler>>: > > > Unable to evaluate {{ // show/hide toolbar > > > var here=story.findContainingTiddler(place); if (here) var > > > tid=here.getAttribute('tiddler'); > > > var show='$1'!='$'+'1'||config.options.chkShowQuickEdit|| > > > tid=='QuickEditToolbar'; > > > place.style.display=show?'block':'none'; > > > '';}}: ReferenceError: place is not defined > > > > For the rest it seems to work, but I have not tried out much yet. > > > > If I download the StyleSheetShortcuts I do not see theQuickEditmenu > > > at all. > > > > Any suggestions how to remove this button with an error message? > > > > Thanks, > > > > Grant --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

