List of Contributions

CodeAssist

Contact Details

CodeAssist


My Content

1 to 20 of 50+ total
Posted By CodeAssist Jul 22, 2026 08:43:56 AM
Found In Egroup: FactoryTalk Optix
\ view thread
Nice investigation. I have noticed that also with the dynamic link and the alpha channel. @asemlucben what do you make of this? ------------------------------ Data Science Technical Consultant Rockwell Automation ------------------------------ Please don't forget to LIKE and mark the BEST ANSWER: REPLY ...
Posted By CodeAssist Jul 21, 2026 08:23:52 AM
Found In Egroup: FactoryTalk Optix
\ view thread
Yes, I've seen this far too many times before. As I recall, it is a warning and not an error. I don't know what is the reason for it, but other than being annoying in the logs there is no real consequence. ------------------------------ Data Science Technical Consultant Rockwell Automation ------- ...
Posted By CodeAssist Jul 16, 2026 11:47:53 AM
Found In Egroup: Automation Control
\ view thread
The timer should not account for any time that the PLC wasn't running and scanning the logic. I would expect that any large jumps of the local clock time be accounted for and corrected in the firmware. You already made some online changes to the controller's clock and it did not cause the timer's accumulated ...
Posted By CodeAssist Jul 16, 2026 09:02:00 AM
Found In Egroup: Automation Control
\ view thread
The timer accumulated value is based on time since the last scan of the RTO instruction. Does your logic have any JMP instructions or any other interrupts that could have prevented the RTO from being scanned during 45 minutes? ------------------------------ Data Science Technical Consultant Rockwell ...
Posted By CodeAssist Jul 12, 2026 01:01:59 PM
Found In Egroup: FactoryTalk Optix
\ view thread
I wouldn't say it is a known issue, because it is generally known that only one user can have one copy of a project open at a time. Optix Studio does not place locks on the project files, which would mean that any other user who opens the same project would have it in 'read-only' mode. You might be trying ...
Posted By CodeAssist Jul 07, 2026 07:11:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
Maybe this is splitting hairs, but people have been confused by this before so I'll say it. The @Description is not for extended tag properties. That is for the Description field of Optix nodes, if you have added them in Optix Studio. The Logix tag descriptions, as metadata, show up as children of the ...
Posted By CodeAssist Jul 01, 2026 03:29:01 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Normally, the .optixz is the correct way to share the whole project, so you are correct. Unfortunately, the current vendor we use for the Engage site does not allow that extension. Here you must use .zip extension. ------------------------------ Data Science Technical Consultant Rockwell Automation ...
Posted By CodeAssist Jul 01, 2026 03:18:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
As for code, there are a couple examples in the Help files of using the serial port API: Example: Protocol configuration in request/response mode Example: Protocol configuration in event mode Also, don't forget the Cheat Sheet: https://github.com/FactoryTalk-Optix/NetLogic_CheatSheet/b ...
Posted By CodeAssist Jun 25, 2026 09:35:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
Hi. Setting OPC UA server nodes to read-only is currently not supported. They will be published with write access. You must apply protection against writing on the client side. ------------------------------ Data Science Technical Consultant Rockwell Automation ------------------------------ Please ...
Posted By CodeAssist Jun 24, 2026 08:37:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
You make some good points, Mihajlo. There is a large installed base of FT View ME (PanelView) applications out there and many of those users will want/need to migrate to FT Optix at some point. That's why the conversion tool is in development and will be available to our customers. You're correct that ...
Posted By CodeAssist Jun 23, 2026 11:11:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
There were quite a few discussed here: https://engage.rockwellautomation.com/discussion/whats-your-favorite-svg-editor ------------------------------ Data Science Technical Consultant Rockwell Automation ------------------------------ Please don't forget to LIKE and mark the BEST ANSWER: ...
Posted By CodeAssist Jun 23, 2026 07:02:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
Dragging them out of this nesting also moves them on the page. What is the relationship there? Z-axis and relative margin. The further down it appears in the tree, the higher up the Z-axis it is. In other words, what is at the bottom of the tree is drawn on top of everything else in the UI. Also, ...
Posted By CodeAssist Jun 22, 2026 07:05:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
I see. Yes, that's time consuming. With a lot in one place you could automate it with a design-time NetLogic that would search the whole screen for every instance and change its fill color. But unless you're accustomed to doing that kind of coding, it might take longer to put together than just doing ...
Posted By CodeAssist Jun 22, 2026 08:32:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
A UI session scaling factor was recently introduced. To use it, you must add a UI Session object to your project's UI folder and then select it in the presentation engine. On the session object there is a property for the desired scale factor: ------------------------------ Data Science Technical ...
Posted By CodeAssist Jun 22, 2026 08:20:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
You can set the fill to transparent for each polyline, but I don't believe there is a way to change the default color. This isn't controlled by the style sheet. To set it transparent, use the code #00000000 which is the same as black but with the alpha channel set to 0, (i.e. two more zeros than black), ...
Posted By CodeAssist Jun 22, 2026 07:44:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
I concur. As someone who has used FT View ME a lot, earlier in my career, and now uses FT Optix exclusively, I know them both very well and I can confirm these software have very little in common. Although a converter will eventually be available that will help with the conversion from View ME to Optix, ...
Posted By CodeAssist Jun 18, 2026 05:46:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
To add to this, there is not any recommendation because all of that is a matter of preference. Optix Studio can live in the same box as the runtime, no problems. I have deployed one of our solutions, powered by Optix, on a customer's server this way. The way we prefer to do it though is to have a server ...
Posted By CodeAssist Jun 17, 2026 08:49:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Hi. I recommend looking in the Template Libraries of Optix Studio. There you will find a folder named Alarm Widgets which you can drap and drop into your project's UI folder. Inside that widgets folder you will find an Alarm Manager and Alarm Summary. These widgets are designed to work well with Logix ...
Posted By CodeAssist Jun 15, 2026 05:27:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
To be honest, I'm not 100% sure what's going on here. It sounds like you got it to work though? There were some minor changes around tags and imports in the recent 1.7 minor releases. I will also say that when you run the Emulator, the project is deployed to Windows temporary files. If you have ...
Posted By CodeAssist Jun 12, 2026 12:24:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Hi and Welcome to Engage! I would say a mixed approach will work best for your needs. Use a repository for the base project which has all the common elements in it. You can clone it, as needed, to start new projects for new customers. Keep the customer-specific components in libraries which are ...