ctrlMapMouseOver: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Added example from HC.)
Line 63: Line 63:
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 11:58, 2 November 2011

Hover & click on the images for description

Description

Description:
Returns description of map sign mouse cursor is over.
Groups:
Uncategorised

Syntax

Syntax:
ctrlMapMouseOver control
Parameters:
control: Control -
Return Value:
Array

Examples

Example 1:
(uiNamespace getVariable "_map") ctrlMapCursor ["Track","HC_overFriendly"];

_mouseover = if (count (ctrlMapMouseOver (uiNamespace getVariable "_map")) > 0) then
{
	ctrlMapMouseOver (uiNamespace getVariable "_map")
}
else
{
	[""]
};

if (_mouseover select 0 == "task" && str(_logic getVariable "onTaskAssigned") != str{}) then
{
	//--- Task
	(uiNamespace getVariable "_map") ctrlMapCursor ["Track","HC_overMission"];
}
else
{
	//--- Waypoint
	(uiNamespace getVariable "_map") ctrlMapCursor ["Track","HC_move"];
};

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section