
Prototype: GemRB.CreateWorldMapControl(WindowIndex, ControlID, x, y, w, h, direction[, font, recolor])

Metaclass Prototype: CreateWorldMapControl(ControlID, x, y, w, h, direction[, font])

Description: This command will create a special WorldMapControl, which is currently unavailable via .chu files. If WindowIndex and ControlID (not ControlIndex!) point to a valid control, it will replace that control with the WorldMapControl using the original control's dimensions (x,y,w,h are ignored). 

Parameters:
WindowIndex - the value returned from LoadWindow
ControlID   - the new control will be available via this controlID
x,y,w,h     - X position, Y position, Width and Height of the control
direction
font        - font uused to display names of map locations
recolor     - recolor map icons (bg1)

Return value: N/A

Example: 
        Window = GemRB.LoadWindow (0)
        GemRB.CreateWorldMapControl (Window, 4, 0, 62, 640, 418, Travel, "floattxt")
        WorldMapControl = GemRB.GetControl (Window, 4)

See also: GetDestinationArea, CreateMovement


MD5: ec421a1b6a60206700cad9c9776f78e6
