Notifications
Clear all

[Closed] Detecting a # in an oject name

what I would like it to do is this , if theres a # in the name do A if not do B ,is this something that maxscript can do ?

anyhelp would be great and Thanks for reading

2 Replies

Hi,

if (findstring $.name “#”) !=undefined then (print “#”) else (print “No #”)

Thanks Zbuffer