> <<tiddler ShowPopup with: TiddlerName label tooltip buttonClass width
> popupClass>>
> I've tried like this:
> <<tiddler ShowPopup with: [[tiddler title]] [[Button label]] [[Tool
> tip]] 600em sticky>>
>
> No matter what number I put as with - em or % or px I get no result...

Although you can omit the optional parameters (buttonClass, width,
popupClass) and allow the default values to be applied ("button",
"auto", and "", respectively), macro parameters are processed
*positionally*.  As a consequence, if you specify a non-default value
for an optional parameter, you have to make sure to include a
'placeholder' value for each optional parameter that occurs before it
in the macro so that there are the correct order and number of values
being passed in the macro.

Thus, you must include a value for "buttonClass", which occurs just
before the width value.  Use the literal classname 'button' (the
default value), like this:

<<tiddler ShowPopup with: [[tiddler title]] [[Button label]] [[Tool
tip]] button 600em sticky>>

enjoy,
-e
EricShulman
TiddlyTools / ELS Design Studios
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to