I liked Moris Grey's sidebar TW a lot. You can drag bits of text to
you tw rather than cutting and pasting. But I use firefox's delicious
plugin in the sidebar, and a tw in the sidebar never quite worked for
me. With the recent arrival of t960 and t960black [1] and the
conversation about golden section grids I thought that I would
experiment with browser windows of more than one size. I have a also
been inspired by Eastgate Systems Hypertext Garden [2]
To this end, I just wrote my first plugin(!!!) which can be added to
tiddlers to resize the window.
Usage
<<resizeWindow w h>>
where w= width and h=height
<<resizeWindow 600 400>>
config.macros.resizeWindow = {};
config.macros.resizeWindow.handler = function
(place,macroName,params,wikifier,paramString,tiddler) {
var w = params[0];
var h = params[1];
window.resizeTo(w,h);
}
Potential additional features
=====================
It would be nice to
*open other TWs from a 600x400 in the top right hand corner and for
them to position themselves on the screen in cool golden sectionish
positions.
*position the window on the screen
*use in conjunction with themes. for example, if window width is less
than 600, hide Mainmenu
[1] http://t960black.tiddlyspot.com/
[2] http://www.eastgate.com/garden/Unexpected_Delight.html
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.