Dynamic Slate Elements Through HUD Blueprint

I would like to be able to call a function from the HUD that creates a Slate Element on the HUD. This is to allow the person who is designing the HUD to be able to modify the Slate UI in the HUD Blueprint at Editor runtime. Is this possible? If so, how?

It’s not because Slate APIs are outside of UObject environment, so blueprint system don’t know how to communicate with it. You would need to create extra layer (classes for UI, functions to control them etc.) in UObject to be able to expose and control slate from blueprint… and this is exacly what UMG is doing too.

Shhhhhhhhiiiiiii…

Oh, well that was one of the options I toyed with before. Thought I would ask here first, before getting really far into it. Back to the grind stone. Thank you for the information, .