[tw] [TW5] Open embedded file in Excel application

2014-12-13 Thread alanschnarr
Hi Everybody,

I would like to be able to embed an Excel file in a TW5 tiddler, create a 
link to the tiddler, and, when clicked, it opens the file in the Excel 
application. (The file is small, ~20k, so I'm not too concerned about 
bloating the tiddlywiki.) I can do this with externally linked Excel files, 
but I'm at a loss how to do this with embedded files. Any ideas on how to 
accomplish this? I hope I'm just missing something basic. 

Thank you in advance!
Alan


-- 
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 email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Help with "New task here" functionality

2014-12-12 Thread alanschnarr
Hi everybody,
I can now add tasks inline without needing to vector off to a separate 
tiddler to edit or save. I thought I'd share my code in case it is useful 
to someone else.

\define taskButtonTags()
[[$(currentTiddler)$]] task
\end

<$reveal type="match" state="$:/temp/addtodo" text="hide">
<$button set="$:/temp/addtodo" setTo="show">Add a to-do


<$reveal type="nomatch" text="hide" state="$:/temp/addtodo">

<$edit-text tiddler="$:/temp/newtodo" placeholder="Add a new to-do..." tag=
"input" type="text"/>

<$button set="$:/temp/newtodo!!title" setTo={{$:/temp/newtodo}}>
<$action-setfield $tiddler="$:/temp/newtodo" tags=<>/> 
Add this to-do...

<$button set="$:/temp/addtodo" setTo="hide">I'm done adding to-dos


Thanks again!
Alan

-- 
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 email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Help with "New task here" functionality

2014-12-11 Thread alanschnarr
Thanks for the quick reply, Tobias.
I'll check it out.

Alan

On Thursday, December 11, 2014 3:55:17 AM UTC-7, Tobias Beer wrote:
>
> Have a look at...
>
> $:/core/ui/Buttons/new-journal-here 
> 
>
> ...which contains the button-code for creating a new journal entry tagging 
> to a given tiddler.
>
> Best wishes, Tobias.
>

-- 
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 email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Help with "New task here" functionality

2014-12-10 Thread alanschnarr
Hi Everybody,

I recently came across TiddlyWiki and love the simplicity and power it 
provides. It is exactly the personal notebook that I have been looking for. 

I currently use TiddlyWiki to organize my project discussions and other 
project information. In a top-level tiddler, I list my discussions 
(tiddlers created with "new here") and meeting minutes (tiddlers created 
with "new journal here"). I also list my project to-dos (tiddlers with the 
tags task and <>).  
  
I am trying to add a button to my top-level tiddler to add new to-dos. I 
can create a new tiddler like I want, but I can't seem to add the tags. 
Here's what I have so for:

<$reveal type="match" state="$:/temp/addtodo" text="hide">
<$button set="$:/temp/addtodo" setTo="show">Add a to-do


<$reveal type="nomatch" text="hide" state="$:/temp/addtodo">

<$edit-text tiddler="$:/temp/newtodo" placeholder="Add a new to-do..." 
tag="input" type="text"/>

<$button set="$:/temp/newtodo!!title" setTo={{$:/temp/newtodo}}>
<$action-sendmessage $message="tm-add-tag" $param=<>/> 
Add this to-do...

<$button set="$:/temp/addtodo" setTo="hide">I'm done adding to-dos


I expect there are a number of possibilities, but I'm not sure where to go 
from here. I am still very new to all this.

Thank you for your help and great job on this tool!
Alan

-- 
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 email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.