RE: lingo-l getPropertyDescriptionList: js syntax

2005-12-20 Thread Mario Arreseygor
Enviado el: lunes, 19 de diciembre de 2005 18:28 Para: Lingo programming discussion list Asunto: RE: lingo-l getPropertyDescriptionList: js syntax Bingo! Valentin hit the nail on the head. You must (a) make a _property_list_ (not an Array with named entries), and (b) use

RE: lingo-l getPropertyDescriptionList: js syntax

2005-12-20 Thread Mendelsohn, Michael
Thanks for answering all the questions, Tom. You da man! I wouldn't have ever guessed that proplist() is the constructor for a new [:] in js syntax. I would have thought it would be Mylist = new propList(); or myObj = {}; I guess there's going to be a lot of trial and error in learning what I

RE: lingo-l getPropertyDescriptionList: js syntax

2005-12-20 Thread Mario Arreseygor
Arreseygor -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Mario Arreseygor Enviado el: martes, 20 de diciembre de 2005 10:36 Para: 'Lingo programming discussion list' Asunto: RE: lingo-l getPropertyDescriptionList: js syntax Hi

lingo-l getPropertyDescriptionList: js syntax

2005-12-19 Thread Mendelsohn, Michael
Hi list... I'm trying to convert a GPDL handler from lingo syntax to js syntax. I keep getting illegal character errors. I've tried many different combinations of quotemarks and pound signs denoting symbols as lingo symbols or strings, but I can't figure this out. Anyone done this before?

Re: lingo-l getPropertyDescriptionList: js syntax

2005-12-19 Thread Valentin Schmidt
hi michael, you have to use something like: function getPropertyDescriptionList(){ var pl = propList(); tmp = propList(); tmp.setAProp(symbol(comment), symbol(What file to open?)); tmp.setAProp(symbol(format), symbol(string)); tmp.setAProp(symbol(default), ); pl.setAProp(symbol(pFile),

RE: lingo-l getPropertyDescriptionList: js syntax

2005-12-19 Thread Thomas Higgins
list Subject: Re: lingo-l getPropertyDescriptionList: js syntax hi michael, you have to use something like: function getPropertyDescriptionList(){ var pl = propList(); tmp = propList(); tmp.setAProp(symbol(comment), symbol(What file to open?)); tmp.setAProp(symbol(format), symbol