View Single Post
  #3  
Old 09-09-2014, 06:36 AM
papadam papadam is offline
Registered User
 
Join Date: Sep 2014
Location: Switzerland
Posts: 7
Re: Multi language mass table

Quote:
Originally Posted by Andy Poulsen View Post
Code:
:contents  (list (list (sd-multi-lang-string "Acrylic" :german "Plexiglas")   0.043 "1.190") ....  )
Thank you so much! This works like a charm!

Quote:
Originally Posted by Andy Poulsen View Post
Code:
:contents  `((,(sd-multi-lang-string "Acrylic" :german "Plexiglas")   0.043 "1.190   .... )")
This does not work, I get an error "a comma appeared inside a backquote" which of course is true. But no Problem since the above works.

Another issue raises up. In the thread material density settings they write
Code:
:units '( nil    :lb   Nil)
I would like to enter the density in kg/m^3 but we use kg and mm. Because we are located in different countries it's not guaranteed that everybody always has the same unit settings. How can I get the script to work independantly of the user settings?

I tried
Code:
:units '( nil    :kg/:m^3   Nil)
which does not produce an error but also does not convert the units.
Reply With Quote