ctrlScrollValues: Difference between revisions
Lou Montana (talk | contribs) m (Some wiki formatting) |
BrettMayson (talk | contribs) mNo edit summary |
||
| Line 22: | Line 22: | ||
|p1= control: [[Control]] | |p1= control: [[Control]] | ||
|r1= [[Array]] | |r1= [[Array]] with [vertical, horizontal] | ||
* vertical: [[Number]] in range 0..1 | |||
* horizontal: [[Number]] in range 0..1 | |||
|x1= <sqf>private _scrollvalues = ctrlScrollValues _ctrl;</sqf> | |x1= <sqf>private _scrollvalues = ctrlScrollValues _ctrl;</sqf> | ||
Latest revision as of 10:27, 2 January 2026
Description
- Description:
- Returns scroll values for current scrollbars in range 0...1 (-1 if not applicable) for the following controls:
- Groups:
- GUI Control
Syntax
- Syntax:
- ctrlScrollValues control
- Parameters:
- control: Control
- Return Value:
- Array with [vertical, horizontal]
Examples
- Example 1:
- Example 2:
- // ControlsGroup private _disp = findDisplay 46 createDisplay "RscDisplayEmpty"; private _ctrlGrp = _disp ctrlCreate ["RscControlsGroup", -1]; private _ctrl = _disp ctrlCreate ["RscTree", -1, _ctrlGrp]; _ctrl tvAdd [[], "Root"]; for "_i" from 1 to 25 do { _ctrl tvAdd [[0], format ["Tree Item %1", _i]]; }; _ctrl ctrlSetPosition [0,0,0.3,1.2]; _ctrl ctrlCommit 0; tvExpandAll _ctrl; _ctrlGrp ctrlSetPosition [0,0,0.2,0.3]; _ctrlGrp ctrlCommit 0; uiNamespace setVariable ["_ctrl", _ctrlGrp]; onEachFrame { hintSilent str ctrlScrollValues (uiNamespace getVariable ["_ctrl", controlNull]); }; 0 spawn { sleep 1; uiNamespace getVariable ["_ctrl", controlNull] ctrlSetScrollValues [0.3, -1]; sleep 1; uiNamespace getVariable ["_ctrl", controlNull] ctrlSetScrollValues [-1, 0.3]; sleep 1; uiNamespace getVariable ["_ctrl", controlNull] ctrlSetScrollValues [0.7, -1]; sleep 1; uiNamespace getVariable ["_ctrl", controlNull] ctrlSetScrollValues [-1, 0.7]; };
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note