Re: MonkeyGTDPrint3x5

2009-03-26 Thread Ken Girard

Roy, find the tiddler 'MonkeyGTDTheme', click the edit button, scroll
down to find '!Printing3x5Styles'.
A bit below that you will see '/* LAYOUT ELEMENTS'
And a little below that will be
body {
 background: #fff;
 color: #000;
 font-size: 6.2pt;
 font-family: "Lucida Grande", "Bitstream Vera Sans", Helvetica,
Verdana, Arial, sans-serif;

}

You want to modify the 'font-size: 6.2pt;' line.
Change the 6.2pt to change the base size of the printed text.
This only affects the size of the printed text.


Ken Girard


On Mar 26, 6:43 pm, Roy Hernandez  wrote:
> Ken-
>
> Great information, but the "edit mode" within the tiddlers don't display the
> "Printing3x5Styles."
>
> Are you referencing a different "edit mode"?
>
> Any recommendations are welcomed.
>
> Thanks,
> -Roy
>
> On Thu, Mar 26, 2009 at 5:34 AM, Ken Girard  wrote:
>
> > Switch the theme to MonkeyGTD.
> > In the tabs section got to More...> MGTD > then scroll down to where
> > it says Theme.
> > Click on the current theme (Should show MonkeyGTD)
> > Go into edit mode.
> > Scroll down that tiddler to where it says Printing3x5Styles.
> > find where it says body {
> > Below that it will say font-size: 6.2pt;
> > change that 6.2 to make the font bigger.
> > All the other font types (h1, h2, etc.) are sized in proportion to
> > that number.
>
> > Ken Girard
>
> > On Mar 26, 5:28 am, Luffy  wrote:
> > > Hello,
>
> > > I'm using MonkeyGTDPrint3x5 styleSheet.
> > > When I print on 3x5 card, the letter size is very too small to be
> > > read. I need a magnifying glass to read it.
> > > Is it normal ?
> > > How can I get bigger policy, which will be more readable ?
>
> > > Thank in advance.
>
> > > Regards
>
> > > Luffy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Re: MonkeyGTDPrint3x5

2009-03-26 Thread Roy Hernandez
Ken-

Great information, but the "edit mode" within the tiddlers don't display the
"Printing3x5Styles."

Are you referencing a different "edit mode"?

Any recommendations are welcomed.

Thanks,
-Roy



On Thu, Mar 26, 2009 at 5:34 AM, Ken Girard  wrote:

>
> Switch the theme to MonkeyGTD.
> In the tabs section got to More...> MGTD > then scroll down to where
> it says Theme.
> Click on the current theme (Should show MonkeyGTD)
> Go into edit mode.
> Scroll down that tiddler to where it says Printing3x5Styles.
> find where it says body {
> Below that it will say font-size: 6.2pt;
> change that 6.2 to make the font bigger.
> All the other font types (h1, h2, etc.) are sized in proportion to
> that number.
>
> Ken Girard
>
>
>
> On Mar 26, 5:28 am, Luffy  wrote:
> > Hello,
> >
> > I'm using MonkeyGTDPrint3x5 styleSheet.
> > When I print on 3x5 card, the letter size is very too small to be
> > read. I need a magnifying glass to read it.
> > Is it normal ?
> > How can I get bigger policy, which will be more readable ?
> >
> > Thank in advance.
> >
> > Regards
> >
> > Luffy
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Re: Waiting actions

2009-03-26 Thread Kralik

On Mar 25, 6:49 pm, "Jorge A. Ramos M."  wrote:
> Excelent! Thank you,
>
> There is only one way to show the actions that belong only to this project
> and not to show all Action of the mGTD?

Well, despite my previous post, I went and figured out a way anyway.
=P
With this code, dependent actions are localized: not in projects to
other actions not in projects, and project actions to same project
actions. Done actions are not shown. It involves an addition to a core
function, so unless it becomes default later, know that you'd have to
add it in when you upgrade.

Goes in MgtdTagControls, under the MultiSelectTag macro. Find this
section:

if (tag == "Project") {
// only want to see active projects
filterComplete += "!tiddler.tags.contains('Complete')";
}

and put the following code right after it:

if (tag == "Action") {
  // only want to see active actions; actions only show other actions
in same project (or no project)
if (tiddler.hasParent('Project'))
  filterComplete += "(!tiddler.tags.contains('Done') &&
tiddler.tags.contains('"+tiddler.getParent('Project')+"'))";
else
  filterComplete += "(!tiddler.tags.contains('Done') && !
tiddler.hasParent('Project'))";
}
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Re: Waiting actions

2009-03-26 Thread Kralik

> There is only one way to show the actions that belong only to this project
> and not to show all Action of the mGTD?

I don't know off-hand, though I did try to figure it out. This was the
quickest solution I could whip up.

I suggest that if you use the "dependent action" toolbar button, that
you change it now to:



(in MonkeyGTDTheme / !ViewToolbarTemplate)

That code will make it so that dependent actions are created with the
same project and context as the original.
One important thing to know: with the drop-down action selector menu,
it will only set ONE action as the dependent. If you manually set 2+,
it will be fine, unless you change one with the dropbox. Then it will
erase all but that one.

I'm sure Simon could come up with something more elegant. ;) But many
thanks to Carsten!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Looking for report view

2009-03-26 Thread mdevlin1971

I am new to gtd.  Used d3 for a while and recently converted to mg td and I'm 
loving it.  One thing I want though and I can't find it.  I would like a action 
dashboard that displays things in  hierarcal form Area-Project-Sub 
project-action.   Is that possible?  

Sent from my Verizon Wireless BlackBerry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Re: MonkeyGTDPrint3x5

2009-03-26 Thread Ken Girard

Switch the theme to MonkeyGTD.
In the tabs section got to More...> MGTD > then scroll down to where
it says Theme.
Click on the current theme (Should show MonkeyGTD)
Go into edit mode.
Scroll down that tiddler to where it says Printing3x5Styles.
find where it says body {
Below that it will say font-size: 6.2pt;
change that 6.2 to make the font bigger.
All the other font types (h1, h2, etc.) are sized in proportion to
that number.

Ken Girard



On Mar 26, 5:28 am, Luffy  wrote:
> Hello,
>
> I'm using MonkeyGTDPrint3x5 styleSheet.
> When I print on 3x5 card, the letter size is very too small to be
> read. I need a magnifying glass to read it.
> Is it normal ?
> How can I get bigger policy, which will be more readable ?
>
> Thank in advance.
>
> Regards
>
> Luffy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to GTD-TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---