I can’t see the fx tree for the nodes…

I can’t see the fx tree for the nodes…

Introduced in 2001, the Fx Tree was a new image compositing module in XSI that was based in part on the discontinued Media Illusion


You can use the undocumented selectednodes attribute, which was added in Softimage 2014.
views = Application.Desktop.ActiveLayout.Views
v = views.Find("Fx Tree") or views.Find("View Manager").Views.Find("Fx Tree")
if v:
print v.GetAttributeValue("selectednodes") # None
The FxTree view also has a targetcontent attribute, which is documented.
* hat tips to csaez (code) and luceric (attribute)