i2 Control V2.2

Discuss the previous iRidium version (V2.2.3) with other users

We have moved our support service to a new technical support system. Since 17.01.2022, we have disabled the ability to create appeals through the userecho personal account. Now all requests are processed via mail to support@iridi.com .

Thank you for your understanding and have a nice day.

+1
Completed

BAS-IP (SIP-audio)

Dmitriy Panchenko 9 years ago in Products / Other drivers updated by Сергей Иванов 7 years ago 46
0
Answered

URI to a model of Video Streamer

Douglas Israel Francisco 7 years ago in i2 Control V2.2 updated by Aleksandr Romanov (CTO) 7 years ago 3
0
Answered

отправка сообщения на email адресс

Andrei1980 7 years ago in i2 Control V2.2 updated by Ekaterina (head of support) 7 years ago 1
+6
Voting

ASCII, HEX, DEC send from Trigger Button

ahmad alnems 8 years ago in GUI Editor updated by Aleksandr Romanov (CTO) 7 years ago 11
0
Completed

Nuvo Control

James R Delaney 8 years ago in Products / Other drivers updated by Andrey S 7 years ago 2

+2
Waiting for user's reply

Reset toolbars in GUI Editor

Theo Derks - NL (distributor) 9 years ago in GUI Editor updated by Oksana (expert) 9 years ago 2
For end-users/installers the toolbars are sometimes a hell. When they are moved to another place, arranging them to the right place is a big job.

Is it possible to make an option "Default toolbars sizes" to place all toolbars i the good and right position/order?

Thanks!

Image 8516
GUI Editor
Answer
Oksana (expert) 9 years ago
Hello Theo,

Now, you can tune your Panels once and then lock:


+5
Voting

get an array of the item names that are on a popup or page

rocfusion 9 years ago in iRidium Script updated by Oksana (expert) 8 years ago 2
Hi,

It would be useful when we could retrieve a list of item names for a page or popup. Knowing the names of the items contained in a popup would open up numerous possibilities of generating more generic control of the UI. This could be implemented as property of IR.GetPopup, for example;
var mypopupitems = IR.GetPopup("Popup 1").GetItemNames;

mypopupitems would be assigned an array of strings ( the names of the items ).

Please vote if you would like to see this implemented into the script....

Now as a workaround until we have a native solution, I have created the following.... which solves this for now. I hope this helps.

Array.prototype.GetItemNames= function(pageorpopup){
this.length=0;
for(var y=0;y<pageorpopup.ItemsCount;y++){
this.push(pageorpopup.GetItem(y).Name);
}
}

IR.AddListener(IR.EVENT_START, 0, function() {

var myPopupItems= []; // create an empty array
myPopupItems.GetItemNames(IR.GetPopup("Popup 1"));
// retrieve an array of item names that are in Popup 1
IR.Log("first popup item names "+myPopupItems);
myPopupItems.GetItemNames(IR.GetPopup("Popup 2"));
// retrieve an array of item names that are in Popup 2
IR.Log("second popup item names "+myPopupItems);
// no need to empty the array the method will do this automatically
});



+1
Voting

Working with several Channels in Project Device Panel

Eddie Barrientos 9 years ago in GUI Editor updated by Oksana (expert) 8 years ago 2
I would like a couple of functions when working with Channels in the Project Device Panel.

1. To be able to select several channels and assign the repeat value to all of the selected channels. For example, I am currently working with 7 Sony TVs and their extended code set is of around 300 channels. I have to select each channel and manually change their repeat value to 3, since the GC database doesn't include the repeat value necessary for the codes to work.

2. To be able to select several channels and add either a text or a number at the end of each channel's name. Sometimes you need to identify each channel with either their numeric identifier or text identifier to be able to work in Script easier. For example, I would like to select all channels for any TV database and to have their names reassigned to:

3D OFF Living Room
3D ON Living Room
...
POWER ON Living Room
POWER OFF Living Room
...
VOLUME DOWN Living Room
VOLUME UP Living Room

Thanks.
GUI Editor/Project device panel
+2
Waiting for user's reply

(dynamic) image stretch for scripted objects

r riksma 9 years ago in iRidium Script / Interface scripts updated by Ekaterina (head of support) 9 years ago 1
In the knowledge base i read the following:
http://support.iridiummobile.net/topic/618162-image-size-changing/
If i read it correctly this says it is not possible to set the image of an object created by script to stretch.

There are two reasons this option would really help me:
1. I have a 720p camera stream, on an ipad this still looks tiny.
2. I have to create the same images multiple times for devices with different resolutions. this wouldn't be necessary if the images could be stretched.

Please consider adding this feature if it is not possible yet.
+6
Voting

revision control system with Iridium

Nikolay Arbuzov 9 years ago in GUI Editor updated by Oksana (expert) 8 years ago 3
Hello,

It would be nice to have an integration with version control systems like git for the source code.
To my view all of the project components has to be stored in the version control:

- scripts
- project graphics components and interfaces.

basically everything that is stored in .irpz file has to be under version control.

I see multiple benefits of this feature:

- Allow multiple developers/designers to collaborate on the project
- Reuse components of the project in other projects e.g. branching.
- Support of the existing installations knowing which version of project was deployed
and if there any components/libraries were changed after.
- Use of other tools to modify project components - text editors, graphics editors,
Iridium GUI Editor would act as a compiler and transfer tool, while development can be
done elsewhere.

Thanks.

GUI Editor