[tw] keyboard shortcut to edit a tiddler using keyboard widget in ViewTemplate

2016-04-03 Thread harsha
Hello, In trying to get a shortcut to edit a tiddler, I inserted the following into the view template <$keyboard key="ctrl+enter" message="tm-edit-tiddler">... where the ... refers to portion of view template <$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate]!has[draft.of]]"

[tw] Re: [TW5] filter list by multiple (2) tags and sort by field "order"

2016-04-03 Thread Dave
Thank you Eric, that worked (of course ;) So I guess that means that if you don't have the "+" its basically calling for all tiddlers regardless of the previous tags because its not within a bracket structure like [tag[Foo]sort[order]] -- You received this message because you are subscribed

[tw] Re: TW5 Global macro leave

2016-04-03 Thread Eric Shulman
On Sunday, April 3, 2016 at 2:26:02 AM UTC-7, magev958 wrote: > > I made a global macro: > > \define counting() > > <$count filter="[tag{!!caption}] -[tag[genus]]"/> > > \end > > and call it with <> and it works perfectly. But the text does > not continue on the same line after the number but

[tw] Re: [TW5] Combobox

2016-04-03 Thread Eric Shulman
On Sunday, April 3, 2016 at 3:40:11 AM UTC-7, Hegart Dmishiv wrote: > > Hi all, > > I have finally mastered the *<$select>* widget, but it has left me > wanting a *<$combobox>* widget as well.I know we have the original > inventor of the combobox itself, lurking around here somewhere, hehe.

[tw] Re: keyboard shortcut to edit a tiddler using keyboard widget in ViewTemplate

2016-04-03 Thread Knut Franke
Hello Harsha, On Sunday, April 3, 2016 at 8:05:03 AM UTC+2, harsha wrote: > I selected some text in a tiddler and typed the shortcut. But it didn't > enter edit mode. Is the problem that keyboard events dont enter the widget? > Probably. As far as I know, only DOM elements with a tabindex

[tw] How do I disable the auto-backup in TD Desktop?

2016-04-03 Thread Yahanan Xie
I've been searching for a way to disable the auto-backup feature of TD Desktop but can not find it. Is there a way to do this or some setting I can change? Thank you. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw] Re: [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
Wow, thanks Eric! That looks exactly like what I was hoping for! I'd like to make use of your code in my project, if that's okay. I'm happy to credit you appropriately however you desire. My project will be released as an academic semester project for *{{DesignWrite}}* at first (Alpha

[tw] Re: TW5 Global macro leave

2016-04-03 Thread PMario
Try this: \define counting() <$count filter="[tag{!!caption}] -[tag[genus]]"/> or \define counting() <$count filter="[tag{!!caption}] -[tag[genus]]"/> \end So no new lines, because in wikitext this means to render the text as a new paragraph. -m -- You received this message because you

[tw] [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
Hi all, I have finally mastered the *<$select>* widget, but it has left me wanting a *<$combobox>* widget as well. In my latest experiment for our *{{DesignWrite}}* semester project, TiddlyCRM, I've been able to populate the options of a *<$select>*

[tw] TW5 Global macro leave

2016-04-03 Thread magev958
I made a global macro: \define counting() <$count filter="[tag{!!caption}] -[tag[genus]]"/> \end and call it with <> and it works perfectly. But the text does not continue on the same line after the number but starts a new line. Any idea why? -- You received this message because you are

[tw] Re: TW5 Global macro leave

2016-04-03 Thread PMario
You where faster :) but the funny thing is. If I test the code of the OP with tiddlywiki.com it works just fine. ... So there may be something else involved too? -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw] Re: New and making a lot of mistakes

2016-04-03 Thread Knut Franke
On Saturday, April 2, 2016 at 11:49:29 PM UTC+2, Christopher Londrie wrote: > > 1) If I remove the field[corpname] I'm able to successfully pull the > titles of the GenSource: tiddler(s), however with it, I get null as a > result, I've made absolutely sure that I've made no spelling mistakes and

[tw] Re: [TW5] filter list by multiple (2) tags and sort by field "order"

2016-04-03 Thread PMario
On Sunday, April 3, 2016 at 8:01:58 AM UTC+2, Dave wrote: > > Thank you Eric, that worked (of course ;) > So I guess that means that if you don't have the "+" its basically calling > for all tiddlers regardless of the previous tags because its not within a > bracket structure like

Re: [tw] Re: font question

2016-04-03 Thread Archizona V
Try to add tag $:/tags/Stylesheet to tiddler with styles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this

[tw] Re: New and making a lot of mistakes

2016-04-03 Thread Hegart Dmishiv
Hi Christopher, Thanks for sharing a little more about your project. I see the distinction now: fantasy vs reality. Even so, your solution does give me pause for thought, and the answers you've been getting to your questions may well have application for what I'm doing as well. Also, your

[tw] Re: keyboard shortcut to edit a tiddler using keyboard widget in ViewTemplate

2016-04-03 Thread harsha
Thanks for the helpful reply, I was able to get it to work by adding a tabindex="1" to the div element in the ViewTemplate and enclosing the div inside a keyboard widget. Your website also had some good plugins. <$keyboard key="ctrl+enter" message="tm-edit-tiddler">>><$list

[tw] Re: New and making a lot of mistakes

2016-04-03 Thread Christopher Londrie
I think that's partly because my end goals are slightly different. I need the ability to generate these while half-distracted and from specific and custom lists, and then have them instantly available. Most time I won't need to generate in bulk. This means a button I can press and dump out a

Re: [tw] How do I disable the auto-backup in TD Desktop?

2016-04-03 Thread Jeremy Ruston
Hi Yahanan I’m afraid there is currently no way to turn off the automated backups in TiddlyDesktop, but there is a GitHub ticket discussing the issue: https://github.com/Jermolene/TiddlyDesktop/issues/75 Best wishes Jeremy. > On 3 Apr

[tw] Re: New and making a lot of mistakes

2016-04-03 Thread Christopher Londrie
Most excellent and many thanks! With those new knowledge bits I can move on to construct the entire thing. On Sunday, April 3, 2016 at 8:06:12 AM UTC-5, Knut Franke wrote: > > On Saturday, April 2, 2016 at 11:49:29 PM UTC+2, Christopher Londrie wrote: >> >> 1) If I remove the field[corpname]

[tw] [TW5] Using jQuery to fetch JSON (tiddlers) directly from Google Sheets?

2016-04-03 Thread Hegart Dmishiv
Hi all, Professor Schneider at *{{DesignWrite}}* has recently shared a link to this blog post , which suggests it is possible to access the information in a Google Sheet as a JSON file, by using jQuery. This looks very promising for my

Re: [tw] Re: font question

2016-04-03 Thread Ákos Szederjei
Wt! That was it! Thank you very much Archizona V!!! Back to work until the next question! ;) Ákos On 4/3/2016 1:49 PM, Archizona V wrote: > Try to add tag $:/tags/Stylesheet to tiddler with styles > -- You received this message because you are subscribed to the Google Groups

Re: [tw] [TW5] Using jQuery to fetch JSON (tiddlers) directly from Google Sheets?

2016-04-03 Thread Jeremy Ruston
Hi Hegart > Professor Schneider at {{DesignWrite}} has recently shared a link to this > blog post , which > suggests it is possible to access the information in a Google Sheet as a JSON > file, by using jQuery. This looks very promising

[tw] Re: [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
That's awesome! I had to look up the each Operator to find out how to use it. It seems to have resolved both the uniqueness and the absence issues together, in one hit. Here's what I've got now in our main playground

[tw] [TW5] slider / reveal widget reset only on opening tiddler?

2016-04-03 Thread Dave
Consider this reveal widget: \define sb(c) <$reveal type="nomatch" text="" default="" state="$:/state/myslider$c$" text="show"> <$button set="$:/state/myslider$c$" setTo="show">. <$reveal type="match" state="$:/state/myslider$c$" default="" text="show"> <$button set="$:/state/myslider$c$"

[tw] Re: [TW5] slider / reveal widget reset only on opening tiddler?

2016-04-03 Thread Hegart Dmishiv
Hi Dave, This sounds like an issue of TW state persistence, which was discussed a while ago and a solution suggested here . Hope this helps, Hegart. On Monday, 4 April 2016 13:12:45 UTC+12, Dave wrote: > > Consider this reveal

[tw] Re: [TW5] padding above and below title/toolbar

2016-04-03 Thread 'Birthe C' via TiddlyWiki
Hi Dave For the padding above .tc-tiddler-frame {padding-top:2px;} Birthe -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: triggering action widgets

2016-04-03 Thread Stacy Cunningham
I wanted to post because I wanted something non-button with the Action Widgets and I ended up solving it. So then it'd be helpful to someone else (or me again, in needing to look this up again in the future!). I wanted to be able to use action-setfield with the Link widget. I added

[tw] Re: [TW5] padding above and below title/toolbar

2016-04-03 Thread Dave
Here's something weird; when I put in this: .tc-tiddler-frame {padding-top:2px;} it works on all tiddlers, but when I put in this .tc-tagged-slide .tc-tiddler-frame {padding-top:2px;} it doesn't work on anything, even though this does affect only the tiddlers tagged "slide":

[tw] Re: [TW5] slider / reveal widget reset only on opening tiddler?

2016-04-03 Thread Dave
Thanks Hegart, maybe I can use that to make a button that "resets" all the reveal widgets from the menu or something. That would work. :) On Sunday, April 3, 2016 at 7:21:42 PM UTC-6, Hegart Dmishiv wrote: > > Hi Dave, > > This sounds like an issue of TW state persistence, which was discussed

[tw] Re: [TW5] padding above and below title/toolbar

2016-04-03 Thread Mat
See if property... display:none; solves your problem. > What should be my google search, or just search terms in this group or on Tiddlywiki.com to find out stuff like this? I tried "css toolbar padding", "viewtemplate padding" e.g. but came up empty handed. Yea, docs on styling TW is

[tw] Re: Abbreviations for Tiddler links

2016-04-03 Thread Mat
Alain Dutechs recent creation <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: [TW5] padding above and below title/toolbar

2016-04-03 Thread Dave
.tc-tagged-slide .tc-title {display:none} that just gets rid of the title in that line but does not change the padding above or below it (and the toolbar is still there) Maybe instead of searching for "padding" I should search for the term "margin"... Thanks for the suggestion though :) On

[tw] Re: Abbreviations for Tiddler links

2016-04-03 Thread Hegart Dmishiv
Hi Shay, Have a look at this idea from Matthew Lauber , which might be useful to you. Hegart. On Monday, 4 April 2016 07:36:07 UTC+12, Shay Shaked wrote: > > Hi guys, > > so this is

[tw] Re: [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
Hi again Eric, Your LegalStatements tiddler advises that any modifications of your code should best be handled as a feature request. I haven't dug deep enough yet to be making such a request, but I thought it might be useful to know in advance if there

[tw] Re: [TW5] Combobox

2016-04-03 Thread Eric Shulman
On Sunday, April 3, 2016 at 2:14:06 PM UTC-7, Hegart Dmishiv wrote: > > Hi again Eric, > > Your LegalStatements tiddler > advises that any modifications of your code should best be handled as a > feature request. I haven't dug deep enough yet to be

[tw] Re: [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
Thanks for the explanation, Eric. I'm really excited by what you've produced here. I've got a working example of it so far in my SampleData playground, here . I still need to overcome these issues with

[tw] Abbreviations for Tiddler links

2016-04-03 Thread Shay Shaked
Hi guys, so this is probably something someone figured out... I use CamleCase a whole lot and I like it so much it became a routine form to SMS my friend (I love driving them nuts with my nerdiness).. thing is, I can have a long Tiddler name like LongTiddlerAboutJohnDoe (for example) but

[tw] Re: [TW5] Combobox

2016-04-03 Thread Eric Shulman
On Sunday, April 3, 2016 at 3:15:49 PM UTC-7, Hegart Dmishiv wrote: > > Thanks for the explanation, Eric. I'm really excited by what you've > produced here. I've got a working example of it so far in my SampleData > playground, here >

Re: [tw] [TW5] Using jQuery to fetch JSON (tiddlers) directly from Google Sheets?

2016-04-03 Thread Hegart Dmishiv
Hi Jeremy, Thanks for looking into this. I have no idea where to even begin with trying to parse that JSON code. It reminds me of something that Mat and Jed were doing a while ago for the Twederation / Tiddlyverse

[tw] Re: [TW5] Combobox

2016-04-03 Thread Hegart Dmishiv
Hi Eric, Here's what I've got so far, after just a few minutes of playing with your macro. It replicates my *<$select>* widget example above, but using your *<>* macro instead... <> What I'd like to know now is how to use the *filter:* parameter to specify only the unique values of the

[tw] [TW5] padding above and below title/toolbar

2016-04-03 Thread Dave
Hello, I have a custom stylesheet: .tc-tagged-slide .tc-title { font-size:20%;line-height: 9px;color:white} .tc-tagged-aside .tc-title { font-size:20%;line-height: 9px;color:white} .tc-titlebar button { opacity: 0; } .tc-titlebar:hover button { opacity: 1; } ... that on tiddlers tagged