Error parsing XML component MainScene.xml

I want to add new screen from MainScene to get components from category_screen.

sub init()
? “[MainScene] Init”
’ m.top.SetFocus(true)
m.category_screen = m.top.findNode(“category_screen”)
m.category_screen.setFocus(true)
end sub

This is my MainScene.xml

<?xml version="1.0" encoding="UTF-8"?> xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance](http://www.w3.org/2001/XMLSchema-instance)" xsi:noNamespaceSchemaLocation="[https://devtools.web.roku.com/schema/RokuSceneGraph.xsd](https://devtools.web.roku.com/schema/RokuSceneGraph.xsd)"> This is my category_screen.brs function init() ?"innnt" m.category_list=m.top.findNode("category_list") m.category_list.setFocus(true) m.category_list.observeField("itemSelected", "onCategorySelected") end function This is my category_screen.xml <?xml version="1.0" encoding="utf-8" ?> I want to make new screen and access content node from MainScene

You need to post this in the Developers portion of the Community. Mostly here you only find end users who have no idea what any of that code means. :grinning_face_with_smiling_eyes: