[tw5] Re: Resize Embedded Video

2019-05-19 Thread A Gloom
> > > In an aside, I have being recently playing with > https://tiddlywiki.com/#WidgetMessage%3A%20tm-open-external-window for > cases when the url refuses to open in side an iframe. > > As a manual "next resort" like a button to trigger the new window from the iframe not displaying or an

[tw5] Re: Batch tagging for TCG wiki

2019-05-19 Thread TonyM
sashimi You question is a little vague and it is hard to gauge how much ot tiddlywiki you already know. In a new tiddler (the browse page) you can use the <$list widget and a filter that selects hat ever tag combination you want. Similar lists can be placed inside a button with action widgets

Re: [tw5] Re: Visual Design Thoughts, #14 revision T7

2019-05-19 Thread Jeremy Ruston
Hi Mario > As far as I can see, tachions grid is based on float: left. ... Which is imo > out of date if you want to start a new UI system. It depends on well defined > clear-fixes , which make it hard > for most users to do things right. Yuck. One

Re: [tw5] Re: Visual Design Thoughts, #14 revision T7

2019-05-19 Thread PMario
On Sunday, May 19, 2019 at 3:37:42 PM UTC+2, Jeremy Ruston wrote: > > I’m keen to introduce a new default theme as part of a future v5.2.x > version of TW5. I’d definitely be wanting to use an off-the-shelf > framework, and tend to favour the simpler ones that focus on typography, > such as

[tw5] Re: Toggle a tag when pressing button to reveal text

2019-05-19 Thread Ed Edson
This is perfect! Thank you! On Sunday, May 19, 2019 at 7:21:46 AM UTC+1, TonyM wrote: > > Ed, > > At first I tried a variation as follows with no luck > > <$reveal type="nomatch" state="$:/state/SampleReveal2" text="show"> > > > <$button> > <$action-setfield $tiddler="$:/state/SampleReveal2"

[tw5] Re: Macro to set a field value in multiple tiddlers

2019-05-19 Thread Damon Pritchett
Thanks Tony, I'll give it a go. Damon On Saturday, May 18, 2019 at 11:29:36 PM UTC-7, TonyM wrote: > > Damon, > > I will leave it to test on your own data but follow this partial code, > from memory > > <$button> > <$list filter="multiple tiddler selection filter"> > One or more action or

[tw5] Re: javascript in text/html tiddlers?

2019-05-19 Thread TonyM
Mario, Is it fair to say for "A Gloom" if you want to introduce a new feature with javascript you need to move it into a plugin. But since he/she is relatively new to TiddlyWiki rather than try and get such a solution working it would be better to ask the community what they are trying to

[tw5] Re: Macro to set a field value in multiple tiddlers

2019-05-19 Thread TonyM
Damon, I will leave it to test on your own data but follow this partial code, from memory <$button> <$list filter="multiple tiddler selection filter"> One or more action or send message action to apply to each tiddler eg <$action-setfield new-field="new-field value"/> Press me - The

[tw5] Re: a list of all the in-built css classes?

2019-05-19 Thread TonyM
Mark, I understand but we could indicate if they relate to page, view or edit templates, or the sidebar which goes a long way to people being able to discover what influences what. As you say using the empty would be a good start and with a few controls and filters around the way it is listed

[tw5] Re: Adding tags containing spaces when creating a child tiddler

2019-05-19 Thread 'Mark S.' via TiddlyWiki
Hi Tony, That looked plenty elegant to me ;-) ! Maybe ... I think actions between tags is deprecated ? So maybe the action could be moved into the action attribute. But deprecated or not this looks easier to read. I never got into the habit of thinking of {{{ }}} because they're not

[tw5] Re: Adding tags containing spaces when creating a child tiddler

2019-05-19 Thread TonyM
Mark, Saying that you are not sure it is the most elegant solution is like "a red flag to a bull" for me, First I found this alternative <$set name=tiddlername filter="[is[current]]"> <$button> Add child tiddler <$action-sendmessage $message="tm-new-tiddler" tags=<> /> Then realised this

[tw5] Batch tagging for TCG wiki

2019-05-19 Thread sashimi
Hi guys, I'm pretty new to personal wikis in general. So far I'm cataloguing multiple game cards in the form of image pages, and hopefully able to sort them using tags. Currently the workflow is slow like this: *Import card images* > *Assign tags individually* (e.g. 'Fire', '1 Mana', 'Spell')

[tw5] Re: Batch tagging for TCG wiki

2019-05-19 Thread PMario
Hi, You can have a closer look to the tiddler $:/Manager . and $:/TagManager . have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: Toggle a tag when pressing button to reveal text

2019-05-19 Thread TonyM
Ed, At first I tried a variation as follows with no luck <$reveal type="nomatch" state="$:/state/SampleReveal2" text="show"> <$button> <$action-setfield $tiddler="$:/state/SampleReveal2" $field="text" text="show"/> <$action-sendmessage $message="tm-add-tag" $param="tagname"/> Show me

[tw5] Re: Resize Embedded Video

2019-05-19 Thread TonyM
Nice Ctrl-zoom in tiddlywiki lets you resize the frame, even force it to be mobile responsive. All I could dream of now is to be able to increase the height by dragging the bottom of the iframe. Nice work In an aside, I have being recently playing with

Re: [tw5] Any examples of using the drop zone widget

2019-05-19 Thread Xavier Cazin
Hi Tony, Here is little proof-of-concept for a YouTube video dropper that I never got completed but that might inspire you. Note that it only works with single videos, not playlists. \define parseurl() <$set name=url filter="[enlistfirst[]]"> <$set name=id

[tw5] Re: javascript in text/html tiddlers?

2019-05-19 Thread PMario
Hi, script tags are sanitized by tiddlywiki, because of security risks. -mario -- 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

[tw5] Any examples of using the drop zone widget

2019-05-19 Thread TonyM
Folks, Does anyone have any examples of using the drop zone widget. The documentation is somewhat incomplete at https://tiddlywiki.com/#DropzoneWidget and it seem to use a method not used elsewhere. I will contribute new documentation once I am competent at using the widget. What I would

Re: [tw5] Re: Visual Design Thoughts, #14 revision T7

2019-05-19 Thread Jeremy Ruston
I’m keen to introduce a new default theme as part of a future v5.2.x version of TW5. I’d definitely be wanting to use an off-the-shelf framework, and tend to favour the simpler ones that focus on typography, such as Tachyons (https://tachyons.io/ ). As others have

[tw5] Re: Creating customized tag-pill

2019-05-19 Thread A Gloom
I duplicated the core Tag Template --iirc-- along with some associated templates to create a second style of tag pills for my RagTag (Jeremy forgive me : P ) top bar menu's. The code (modified tag template) below shows the filters used for the tag drop down listings and changing the default

[tw5] Re: Resize Embedded Video

2019-05-19 Thread A Gloom
This I'm currently testing with iframe content-- a container div to set size and -webkit-transform: scale() to scale the iframe content inside the div, it came from responsive page design for autoscaling iframe content to fit the page its embeded in. the original code-- zoom: 0.71;

[tw5] javascript in text/html tiddlers?

2019-05-19 Thread A Gloom
>From what I could find about the subject, you can use tag in a text/html tiddler but the simple examples I seen shown (shown below) don't work in my TW-- I get the iframe but no content. Using single file TW 5.1.17 & 5.1.19 with latest Firefox.