Here, simply create a js file with this:
/*
<action jsname="action_send_txt_file_to_var" description="Read a txt file and send it to a variable">
<property name="Filename" type="string" default="Filename.txt" description="Enter the Filemname to be entered"/>
<property name="Variable_Name" type="string" default="" description="Enter the name of variable to be loaded"/>
</action>
*/
action_send_txt_file_to_var = function () {
};
action_send_txt_file_to_var.prototype.execute = function (currentNode)
{
ccbSetCopperCubeVariable(this.Variable_Name,ccbReadFileContent(this.Filename));
};
You can either use this script or what i said ' ccbSetCopperCubeVariable("nodes",ccbReadFileContent("Lvl1.txt"));' inside the action 'execute a javascript'
Don't be afraid to ask me anything else. :-) lucks.