What is grNms? What does it contain? If they are only ID’s then your statement would resolve to something like:
put the name of ( group "rawRow" of (123456)) You can see the problem. Now if it contains rows of the long id’s of those groups, then your statement might resolve to something like: put the name of ( group "rawRow" of (group id 2571 of card id 1002 of stack “myStack")) Is group “rawRow” contained in group id 2571 of card id 1002 of stack “myStack"? If not then that also is a problem. What I usually do to make troubleshooting simpler is I put every value I am going to enter into a statement into a variable first. In your case you can use a breakpoint before the statement and examine the contents of grNms to see if it contains what you think it does. Bob S > On Dec 15, 2014, at 09:43 , Dr. Hawkins <[email protected]> wrote: > > I have a variable with group ids in it. > > I then try something like > > put the name of ( group "rawRow" of ( line 3 of grNms )) > > (with variations on the parenthesis). > > 7.0.1-RC3 replies that there is an unquoted literal near name. > > I am having to first manually put the name together in a variable, and then > take the ID of that. > -- > Dr. Richard E. Hawkins, Esq. > (702) 508-8462 > _______________________________________________ > use-livecode mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your subscription > preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
