ok, I have saved files which are blowfish encrypted. To open them, I populate them from the saved folder in a tree object. All that works, I'm just having a problem actually opening them. On my tree objects "On Double Click" event, I have this fuction (well, the actual function is in the GLOBALS)
Page jumps, but there is no text file created in the Temp Folder, and thus no text displayed in the paragraph object. I think it's just how I have the file concatenated.Code:function RunNodeFile() sel_node = Tree.GetSelectedNode("Tree1"); node = Tree.GetNode("Tree1", sel_node); node_data = node.Data Crypto.BlowfishDecrypt(node_data, _TempFolder..node_data..".txt", "trustno1withthispassword"); --trustno1withthispassword OPEN_TXT = TextFile.ReadToString(_TempFolder..node_data..".txt"); Page.Jump("forms"); --File.Open(node_data, "", SW_SHOWNORMAL); end

