Re: [tw] Re: Transcluding the source of an Image out of a a field.

2016-06-28 Thread 'Mark S.' via TiddlyWiki
Not sure if this is what you mean, since you started out by describing the situation for a template. But you can add a width parameter to the macros: \define imgposter(img wid) [img width="$wid$" [$img$]] \define poster(wd) <$macrocall $name=imgposter img={{!!poster}} wid=$wd$/> which can be

Re: [tw] Re: Transcluding the source of an Image out of a a field.

2016-06-28 Thread Jan
||Hi Mark, Thanks a lot, this was it. With your hint i made a version that can be called by <> if tagged as a macro. \define imgposter(img) [img[$img$]] \define poster() <$macrocall $name=imgposter img={{!!poster}}/> Now it would be perfect to be able to set an Imagewidth within this

[tw] Re: Any Cooks here?

2016-06-28 Thread RickL
Since your gmail address is in your response, I will pm you with my current recipes file. I have the recipes linked to the Grocery List tiddler which makes it easy to keep track and plan. Take a look and let me know if you have questions. Rick On Tuesday, June 28, 2016 at 1:00:21 PM UTC-4,

Re: [tw] Re: TiddlyWiki European Meetup 2016

2016-06-28 Thread Mat
Happy to report I'm now officially ready to rock'n roll between; July 14 (Thursday evening) ...until July 19 (Tuesday). After tip from fellow Birthe, I used Airbnb and set the address to the meeting location (Oxford Centre for Innovation - New Road, Oxford, OX1 1BY) and went with the closest

[tw] Re: [TW5] access data in nested json

2016-06-28 Thread 'Mark S.' via TiddlyWiki
This is why the use-case is more important than the example. It doesn't sound like your use-case requires the index depth I had supposed from your example. Probably need to see more of the actual data you are interested and understand why you want it in JSON format. Good luck, Mark On

[tw] Re: Concatenating (Joining) Hard and Indirect text within a Filter

2016-06-28 Thread codacodercodacoder
On Tuesday, June 28, 2016 at 1:18:30 PM UTC-5, Thomas McLeod wrote: > > So I want to be able to search for all items tagged with String+Title. > Example: > Input: Company{{!!title}} > Output: CompanyApple > Where: Company is the string and Apple is the title of the tiddler > > Now I want to be

Re: [tw] triggering action widgets

2016-06-28 Thread codacodercodacoder
On Sunday, January 11, 2015 at 3:05:32 AM UTC-6, Jeremy Ruston wrote: > > > the contents of the select widget are buried at the grandchild level > rather than being immediate children > > Why is that happening? The action widgets are supposed to be the immediate > children of the triggering

[tw] Re: [TW5] access data in nested json

2016-06-28 Thread Hans Maulwurf
Mark, thanks a lot for your work, I will have a look how i will use it. For my use case, I want to read out an array of a json-idx which contains tiddler-names and to use them (e.g. just linking to these tiddlers as a list or insert their content). So in the worst case, I don't know the size

[tw] Re: triggering action widgets

2016-06-28 Thread Andrew Whiting
Hi Stacy, Would something along these lines work for me? I created a simple macro that uses the Link Widget to create a new tiddler but I would like the created tiddler to have several tags. I wanted to use action-setfield but don't know how to trigger it without using a button (which I don't

[tw] Re: [TW5] access data in nested json

2016-06-28 Thread 'Mark S.' via TiddlyWiki
Hello, I threw this together. It's probably not very robust -- I would need to know more about your use case. But it should give a starting point for thinking about the problem. BE SURE TO BACK UP YOUR TW BEFORE TRYING!! To use, drag, drop, and import the attached JSON tiddlers into your TW.

[tw] Re: Concatenating (Joining) Hard and Indirect text within a Filter

2016-06-28 Thread PMario
Hi Thomas, Can you describe, _what_ you want to achieve, and not how you want to achieve it. I have the impression, there is a concept problem. But this may be just my problem of imagination :) I can see, you want to create an automatic list in a tiddler named "Apple" with a prefixed tag.

[tw] Concatenating (Joining) Hard and Indirect text within a Filter

2016-06-28 Thread Thomas McLeod
So I want to be able to search for all items tagged with String+Title. Example: Input: Company{{!!title}} Output: CompanyApple Where: Company is the string and Apple is the title of the tiddler Now I want to be able to do this with a filter. <> This just returns nothing. I've also tried: <>

Re: [tw] Re: [TW5] access data in nested json

2016-06-28 Thread Hans Maulwurf
I'm New into this. Could someone give me a hint/howto/tutorial for doing this? -- 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: Any Cooks here?

2016-06-28 Thread J Mc
Hello RickL I am interested in your journalexample.tiddlyspot.com I would like to see how it could be used for shopping lists but the website is requesting a login and password. Could you please post an example somewhere. Thanks J Mc On Sunday, February 8, 2015 at 3:59:44 PM UTC, RickL wrote: >

Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-28 Thread Rustem
Andrew, did you check this out? https://clipboardjs.com/ Not that I know what I'm talking about, but I did not notice any visible selection taking place as I click Copy or Cut buttons. Cheers --R. On Monday, June 27, 2016 at 5:38:51 PM UTC-7, Andrew wrote: > > Regretably, due to browser

[tw] Re: [TW5] access data in nested json

2016-06-28 Thread 'Mark S.' via TiddlyWiki
According to TiddlyWiki.com, *"Note: It is currently only possible to retrieve data from the immediate properties of the root object of a JSONTiddler."* It appears that JSON.parse is available (at least in FireFox), so it might be possible to create a javascript macro that could pull out

Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-28 Thread Dragon Cotterill
Would you need to have something you could actually select? Like a temporary textara? function copyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; document.body.appendChild(textArea); textArea.select(); try { var successful =

[tw] Re: Transcluding the source of an Image out of a a field.

2016-06-28 Thread 'Mark S.' via TiddlyWiki
I don't understand what you mean by "it has to be just the paths". The following will show an image stored in a poster field. \define imgposter(img) [img[$img$]] POSTER: <$macrocall $name=imgposter img={{!!poster}}/> Transclusion's are not real "Things", or at least that's not how they seem

[tw] [TW5] access data in nested json

2016-06-28 Thread Hans Maulwurf
is it possible to save the following as json-tiddler and access e.g. the Strings BMW, Toyota etc.? at tiddlywiki.com I only found how to get the "object" like {{jsontiddler##type}} { "type": "object", "title": "Car", "properties": { "make": { "type": "string", "enum": [

Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-28 Thread Jeremy Ruston
Hi Andrew > Regretably, due to browser security, the execCommand copy only seems to work > on visibly selected content. So, a hidden div won't work. Ouch. Presumably one could still use a dynamically created div, though, even if it has to be (briefly) visible. > I am trying to understand how

[tw] Re: Simple template for modals

2016-06-28 Thread J Mc
Hi FrD, I'll use the drag and drop method, as you suggest. Thanks for your help and the great templates. On Monday, June 27, 2016 at 5:56:43 PM UTC+1, FrD wrote: > > Hi J Mc > > Well I don't know if it's possible. I doubt it because of the access to > the filesystem but I'm not sure. > And if it

[tw] Re: Master list across TW5 files

2016-06-28 Thread RickL
So there are opinions that yes this can be done, and others that say it cannot. If possible could someone give a detailed example? On Thursday, June 16, 2016 at 3:15:50 AM UTC-4, Jed Carty wrote: > > Richard, > > You can do this with local files. This is exactly what I made for the >

Re: [tw] Re: How can the title be transcluded to a macro parameter as a wikilink.

2016-06-28 Thread Jan
Hi Mark! Thanks a lot! I had solved my Issue worlarround-style just before I recieved your mail, but your explanation takes me to a new level... That's how this works! With this knowledge I can attack the next problem! Jan Am 28.06.2016 um 02:41 schrieb 'Mark S.' via TiddlyWiki: Using the

[tw] Transcluding the source of an Image out of a a field.

2016-06-28 Thread Jan
Hallo! I want to build a template in which I transclude the imagelinks stored in the field poster into an expression that renders the image. It hast to be just the paths because I also have to use them in the videotag. How do you do this? [img[{{!!poster}}]] [img{!!poster}]? Thanks and

[tw] Re: [TWC] dGSD config question

2016-06-28 Thread Dragon Cotterill
Yeah, you're not alone as a TWC user. :) -- 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 group, send

Re: [tw] Re: TiddlyWiki European Meetup 2016

2016-06-28 Thread Jeremy Ruston
Hi Mat > I'm hoping to stay within walking distance from the event place. Do you > happen to know any accommodations in the vicinity? The ideal would be a B > but some boring hotel is also fine. I don't have anywhere specific to recommend, I'm afraid. I'd suggest some judicious Googling of "b

[tw] Re: [TWC] dGSD config question

2016-06-28 Thread Leo Staley
I mostly use my own mashup tiddlywiki which uses stuff from everywhere, but I've dabbled quite a bit in dGSD, and I'll give it a look. It's great to see other active TWC users around here! On Monday, June 27, 2016 at 6:08:26 AM UTC-7, Robert Edwards wrote: > > Hi everyone -- I'm beginning to