mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
11 lines
348 B
Plaintext
11 lines
348 B
Plaintext
|
params ["_display","_parent","_idc","_position","_speed","_delay","_rewind","_ctrl"];
|
||
|
|
||
|
_ctrl = _display ctrlCreate ["RscControlsGroup", _idc, _parent];
|
||
|
_ctrl ctrlSetPosition _position;
|
||
|
_ctrl ctrlSetAutoScrollSpeed _speed;
|
||
|
_ctrl ctrlSetAutoScrollDelay _delay;
|
||
|
_ctrl ctrlSetAutoScrollRewind _rewind;
|
||
|
_ctrl ctrlEnable false;
|
||
|
_ctrl ctrlCommit 0;
|
||
|
|
||
|
_ctrl
|