Hey T -
If your Border is a direct child of a Canvas Panel, then you can get positional data on it by the following steps:
- Set the Border’s “IsVariable” checkbox to true so you can place it on a graph
- Use the “Slot as Canvas Slot” to find this border as a specific child of the canvas panel (where the position comes from)
- Then call “GetPosition” to get the (x,y) coordinates of that slot (which has your border in it)
I don’t exactly remember … but the origin point of (0,0) might be located in the center of the screen and that might depend on the anchor points you’re using … So the top left might be like -0.5 x screen width and -0.5 x screen height perhaps, so you might need to do some math on the position once you get it to convert to screen space.