Profile

Altaz Daruwala, Software Developer Co-op

Ross Staff

Contact Details

My Content

1 to 20 of 47 total
Posted By Altaz Daruwala 03-28-2024 11:54
Found In Egroup: Facility Control
\ view thread
Link of the thread where the question is answered for visibility: https://rossvideo.community/discussion/datalinq-data-formatting-1#bm60ac66a5-1d6b-4f3e-8be0-2a91294d410f ------------------------------ Altaz Daruwala Ross Video ------------------------------
Posted By Altaz Daruwala 03-25-2024 09:49
Found In Egroup: Facility Control
\ view thread
Hello, Thank you for the question! Would it be possible for you to attach a grid file of the current state so that we could answer the question more accurately? Best Regards, Altaz Daruwala ------------------------------ Altaz Daruwala Ross Video ------------------------------
Posted By Altaz Daruwala 03-18-2024 10:41
Found In Egroup: Facility Control
\ view thread
Hi James, Unfortunately, we do not have access to third-party documentation so I could not be able to answer the question. However, if you have the documentation and would like assistance in sending specific messages over specific protocols through DashBoard, we would be happy to help! Best Regards, ...
Posted By Altaz Daruwala 03-12-2024 12:02
Found In Egroup: Facility Control
\ view thread
Hi Marty, Sorry for the delayed response. You can communicate to other devices using Ross Talk. You can have your Ross Talk command inside your conditional statements and pass the commands. The syntax of a Ross Talk command is as follows: rosstalk.sendMessage('HOSTNAME', PORT, 'COMMAND NAME'); ...
Posted By Altaz Daruwala 03-11-2024 13:15
Found In Egroup: Facility Control
\ view thread
Hi Jake, Sorry for the delayed response. Once you have validated that the connection is successful and has no connectivity issues, You might want to check if the issue is on the graphic side. I am not sure about force updating but you can ensure that your settings for retrieving from the datalinq ...
Posted By Altaz Daruwala 03-11-2024 11:35
Found In Egroup: Facility Control
\ view thread
Hello Dong-Geun, Sorry for the delayed response. Just to clarify, are you looking for a functionality independent of the custom control? and have it as a separate as a separate use-case? If so, Can you please help me with which specific functionality are you trying to implement? I look forward to ...
Posted By Altaz Daruwala 03-07-2024 10:12
Found In Egroup: Facility Control
\ view thread
Hi Brian, Also, a better way to trim the 'file:/' part of the directory would be using the substr() method. You can use it as follows: var trimmedDir = currentDir.substr(6); ogscript.debug(trimmedDir); Hope this helps. Best Regards, ------------------------------ Altaz Daruwala ...
Posted By Altaz Daruwala 03-06-2024 12:48
Found In Egroup: Facility Control
\ view thread
Hi Brian, To trim the file:/ part of the directory you can use the replace function to replace file:/ part of the directory with an empty string. You can find the example below: var trimmedDir = currentDir.replace(/^file:\//, ''); ogscript.debug(trimmedDir); Hope it helps. Best Regards, ...
Posted By Altaz Daruwala 02-29-2024 11:35
Found In Egroup: Facility Control
\ view thread
Hi Brian, To set a style to the preview of the image, you can use ogscript.setStyle() function. An example of using that function could be ogscript.setStyle('ImagePreview', 'bg-u:' + imageUrl); The above snippet sets the background of the label 'ImagePreview' to the selected image. ...
Posted By Altaz Daruwala 02-29-2024 11:34
Found In Library: Facility Control
Posted By Altaz Daruwala 02-28-2024 12:12
Found In Egroup: Facility Control
\ view thread
Hi Scott, The sockets which are opened by the function rosstalk.sendMessage() are automatically closed after a few seconds of inactivity and cannot be closed explicitly. However, if you would like to have a connection that you can control and is open indefinitely, you can make use of a listener which ...
Posted By Altaz Daruwala 02-26-2024 09:31
Found In Egroup: Facility Control
\ view thread
Hi Tamer, Sorry for the delayed response. I think the shortcut assignment is not limited to Tab and Shift + Tab, You can set the shortcut to any key you wish by double-clicking on the shortcut column and typing the key. Please feel free to reach out if you were looking to do something else. Best ...
Posted By Altaz Daruwala 02-20-2024 09:09
Found In Egroup: Facility Control
\ view thread
Hi Geraldo, Welcome to the community! I am sorry to hear about the unresponsive viewcontrol touchscreen. While this is not normal behavior, can you please provide more information about what tabs were open along with the one you were using(in the main view and around all of the sides)? Also, Since ...
Posted By Altaz Daruwala 12-12-2023 11:34
Found In Egroup: Facility Control
\ view thread
Hi Sylvain, To translate this code to ogscript, we use translate the map to manually fill the array with Parsed Ints and make use of a message builder. Since the first 6 values would always be 255, we directly push 255 into the message builder. After this, we loop through the macBytes array and insert ...
Posted By Altaz Daruwala 12-05-2023 20:38
Found In Egroup: Facility Control
\ view thread
Hi Sunil, Yes, It is currently removed from the forum but since it is indexed, you can still search it on search engines like Google. Best Regards, ------------------------------ Altaz Daruwala Ross Video ------------------------------
Posted By Altaz Daruwala 12-05-2023 13:30
Found In Egroup: Facility Control
\ view thread
Hi Sunil, I apologize for the delay, I was trying to find a solution to your question. Unfortunately, there doesn't seem to be a way to implement the change of grid column size or row size in the way you are hoping for. I believe other team members are aware of your question and are working on a workaround ...
Posted By Altaz Daruwala 12-05-2023 13:26
Found In Egroup: Facility Control
\ view thread
Hi Sunil, For me, the best way to search for a question in the Ross Video Community is using search engines like Google as this forum can be indexed on search engines. I hope this helps. Best Regards, ------------------------------ Altaz Daruwala Ross Video ------------------------------
Posted By Altaz Daruwala 12-04-2023 09:19
Found In Egroup: Facility Control
\ view thread
Hi Dan, I think this is possible. Below is a similar panel in which the widget selection changes as per the selected parameter and vice-versa. In the panel below, we make use of the "onchange" and "onload" handlers. Here, in the first ogscript block, upon loading or changing, we check the value ...
Posted By Altaz Daruwala 11-14-2023 10:42
Found In Egroup: Facility Control
\ view thread
Hi João, Hope Jack's answer was helpful to you. Just to add, the VDCP library in DashBoard was built around those servers, so it should be supported. Here is a Custom Panel that uses VDCP commands that should help you build your panel. Please be careful about using the right ports. Best Regards, ...
Posted By Altaz Daruwala 11-14-2023 10:41
Found In Library: Facility Control