Hello guys,
i'm struggling with a very simple task. I just want to move an OriginFrame (in this case CommandButton 8) to another spot on the screen. It doesnt work for some reason, the icon sometimes disappears, sometimes it is still connected to an AbsPoint, even tho i removed all points..
shouldn't that be enough?
i'm struggling with a very simple task. I just want to move an OriginFrame (in this case CommandButton 8) to another spot on the screen. It doesnt work for some reason, the icon sometimes disappears, sometimes it is still connected to an AbsPoint, even tho i removed all points..
JASS:
local framehandle fh
set fh = BlzGetOriginFrame(ORIGIN_FRAME_COMMAND_BUTTON, 8)
call BlzFrameClearAllPoints(fh)
call BlzFrameSetAbsPoint(fh, FRAMEPOINT_BOTTOMLEFT, 0.50, 0.50)
shouldn't that be enough?