Collection proxy not working? (SOLVED)

Hello everyone,
I got something today, while loading collection factories with this:

gui.animate(self.splash_screen, gui.PROP_SCALE, sca, gui.EASING_OUTCUBIC, 7,0, function()
		print("done")
		--gui.set_scale(self.splash_screen, vmath.vector3(0.00001,0.0000021,0.000011))
		gui.delete_node(gui.get_node("bg"))
		flow(function()
			flow.load("/proxies#menu")
		end)
	end)

The animation plays well but after it The screen just becomes black and loads nothing… Why is this happening?/

What is the function flow doing? And do you get any error in the console?

No the console is clear. Flow is actually @britzl 's flow

You call onmessage for flow?

function on_message(self, message_id, message, sender)
    flow.on_message(message_id, message, sender)
end
3 Likes

It was missing. Added it and it works. :grinning:
Thanks

2 Likes