Hi I have this snippet that I am using Mac::Glue to send to the Valentina database:
$n->make(new => 'field', with_properties => {name => 'Name', type => 'tString', 'length' => 50}, at => location(end => $Customer)); and I am having difficulty in getting the type to be compiled correctly. In the generated Pod the "Enumerations" lists tString as being of VLst and this works fine: $n->make(new => 'field', with_properties => {name => 'Name', type => 'VLst', 'length' => 50}, at => location(end => $Customer)); as does this $n->make(new => 'field', with_properties => {name => 'Name', type => VLst, 'length' => 50}, at => location(end => $Customer)); although I get if I capture AppleEvents, VLtp:'VLst' rather than VLtp:VLst (as I do with AppleScript). However, using VLst rather than tString seems less than elegant (and I still wonder about 'VLst'). How could one modify my first try (i.e. with tString) to make it work? Ed Wall