- Joined
- Jul 18, 2010
- Messages
- 2,377
Didn't see your edit earlier.
in jass in a callable function it would be.
The code above would move the minimap outside the 4:3Screen to the right middle.
But beaware that with "ConsoleUIBackdrop" as parent the Minimap is layerwise below SimpleFrames.
in jass in a callable function it would be.
JASS:
function MoveMinimapOutOf43Screen takes nothing returns nothing
local framehandle parent = BlzGetFrameByName("ConsoleUIBackdrop", 0)
local framehandle frame = BlzGetFrameByName("MiniMapFrame", 0)
call BlzFrameSetParent(frame, parent)
call BlzFrameSetAbsPoint(frame, FRAMEPOINT_BOTTOMLEFT, 0.9, 0.3)
call BlzFrameSetAbsPoint(frame, FRAMEPOINT_TOPRIGHT, 1.05, 0.45)
endfunction
But beaware that with "ConsoleUIBackdrop" as parent the Minimap is layerwise below SimpleFrames.