[tw] Re: tiddler if syntax

2010-11-23 Thread skye riquelme
Hi All Still cant get this to work. Maybe to explain the context a little more. The TW is seen over the web and participantes need to access information on a dvd that they have..so TW needs to know the drive number for the DVD drive for their computer. So the tiddler CDriveNumber has a bit

[tw] Re: tiddler if syntax

2010-11-22 Thread PMario
Hi skye, If you give us a short description, what you want, it would be easier. -m On Nov 22, 9:52 pm, skye riquelme riquelme.s...@gmail.com wrote: Hi all I am trying to use this linebut can´t get it ot work ??? tiddler CDriveNumber if:{{config.options.txtDVD == undefined}} Help

[tw] Re: tiddler if syntax

2010-11-22 Thread Eric Shulman
tiddler CDriveNumber if:{{config.options.txtDVD == undefined}} try this: tiddler CDriveNumber if:{{config.options.txtDVD===undefined}} * omit the quotes around undefined. It is a javascript intrinsic constant, rather than a string literal. * use the exactly equal operator (===) rather than