|
Thanks it works with one text object but please read my
maxscript window as follows
--typed in the finder selection set=1 text (text with mesh select)
foo=$
$Text:Text96 @ [-710.805725,-0.000026,842.500000]
foo.baseobject.font ="Technic"
“Technic”
--this works with one text selected
--trying with two text selected -both text objects have mesh select
foo=$
$selection
foo.baseobject.font= “Technic”
-- Unknown property: “baseObject” in $selection
--lets try this maxscript
---------------foo=$
---------------for x in 1 to foo.count do
---------------(
---------------foo[x].baseoject.font="Technic"
----------------)
--pressing evaluate$selection
-- Error occurred in i loop
-- Frame:
-- i: 1
-- Unknown property: “baseoject” in $Text:Text98 @ [-661.802307,-0.000023,762.500000]
OK
i had to change the display from i to x as bracket i bracket is the same
command as italics in this viewer!!
Steve_Curley 27 August 2010 11:01 AM
foo.baseobject.font = "Arial"
n.b. You must spell the font exactly as shown in the dropdown list, including capitals and spaces (if any).
|