m.top isn't the Scene, it's the task component itself. So fields on the task node are m.top.<field> and the unique id of the task component is m.top.id.
This is what you're talking about, right?
<component name = "TestScene" extends = "Scene" >
<script type = "text/brightscript" >
<![CDATA[
Function init()
task1 = m.top.findNode("Task1")
task1.control = "RUN"
task2 = m.top.findNode("Task2")
task2.control = "RUN"
End Function
]]>
</script>
<children>
<TestTask
id="Task1"/>
<TestTask
id="Task2"/>
</children>
</component>