List of Contributions

General Quarters

Contact Details

General Quarters


My Content

1 to 20 of 50+ total
Posted By General Quarters May 22, 2026 12:07:11 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Click the drop down on Settings Select Advanced -------------------------------------------
Posted By General Quarters May 15, 2026 03:29:47 PM
Found In Egroup: FactoryTalk Optix
\ view thread
I take the FT Optix Community Creed! -------------------------------------------
Posted By General Quarters May 06, 2026 08:00:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
A few ideas. There is an Enumeration Type that can align with the combo box easier than objects. Unsure if it's worth the refactor as you have the plumbing setup already. I also think your Selected Value Path and Selected Value are fighting on the Combobox Are there any logs ...
Posted By General Quarters Apr 28, 2026 06:46:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Comm driver appears to be the culprit for both. Worth a shot to upgrade to 1.7 studio version and windows firmware to see if it resolves -------------------------------------------
Posted By General Quarters Apr 15, 2026 02:27:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
The main thing is to add a UISession and push the IdleTimeout Events over to that Windows seem new to 1.7 and I'm not sure if you can actually invoke them like you can panels or dialogs, so this seems to have less control for things like change user, change password etc ----------------- ...
Posted By General Quarters Apr 15, 2026 02:26:37 PM
Found In Library: FactoryTalk Optix
Posted By General Quarters Apr 14, 2026 09:30:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
It's hard to tell what's potentially misconfigured without seeing screenshots of the bindings both on your screen and popup. here's a git project and blog post that shows how to use aliases which might help: https://asqi.org/resources/building-reusable-popup-templates-with-alias-passing-in-fact ...
Posted By General Quarters Apr 13, 2026 04:04:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
can you share some screenshots of how your screen and bindings are setup as well as your popup? -------------------------------------------
Posted By General Quarters Apr 13, 2026 04:03:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
if you could share some logs of when the idle timeout is hit as well as screenshots for how you have that configured, that'd be helpful. it's useful to temporarily bump down the timeout for testing to get some quicker feedback loops -------------------------------------------
Posted By General Quarters Apr 10, 2026 01:12:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
seems similar to the troubles in the Fiix library: https://engage.rockwellautomation.com/discussion/fiix-optix-library what ultimately resolved that was down versioning the library. It'd be worth a shot to try older versions if it has the features you need. Another debugging mechanism that could be ...
Posted By General Quarters Apr 10, 2026 12:47:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
Is this studio output when running on an emulator or panel? Do you get a live and accurate connection when trying to run the tag importer in studio? -------------------------------------------
Posted By General Quarters Apr 10, 2026 09:03:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
I think this thread and demo will help you out: https://engage.rockwellautomation.com/discussion/how-to-configure-radiooption-buttons https://github.com/asqi-carter/reciperadiobutton Note that this is ~1.5.x and uses the previous recipe editor. same concepts apply with needing the save to db and ...
Posted By General Quarters Mar 25, 2026 02:10:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
The failed to parse can sometimes be caused by opening in excel and clicking yes on a dialogue box. I would try to try a fresh export from GX Works2 directly to Optix studio without opening in excel. If that works, then do your updates in Notepad or test out in excel after clicking no on the dialogue ...
Posted By General Quarters Mar 13, 2026 01:33:00 PM
Found In Egroup: Advanced Software
\ view thread
can you provide more screenshots of configuration from optix studio. another debugging step would be to check out the db that the logger is pointed to to verify that there isn't an extra column with that gibberish -------------------------------------------
Posted By General Quarters Mar 10, 2026 12:49:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
You could expose the embedded db via custom endpoints in Netlogic, but I don't think the juice would be worth the squeeze. Better approach on Optix Edge would be to use Portainer to create a Influx / MySQL db container and interface with that both through Optix Studio / Runtime and via external tools ...
Posted By General Quarters Feb 27, 2026 08:10:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
can you provide some screenshots demonstrating this? could you rename the folder or alias for the time being? -------------------------------------------
Posted By General Quarters Feb 27, 2026 08:08:00 AM
Found In Egroup: Advanced Software
\ view thread
I'm guessing this is a library import. Have you searched for it in the library? -------------------------------------------
Posted By General Quarters Feb 27, 2026 08:05:00 AM
Found In Egroup: FactoryTalk Optix
\ view thread
great edge case you've found. A simple hack would be to have a model var boolean helper on your popup for the workflow signing. on your idle timeout that closes all dialogs, use this as a conditional to determine if you should run the cancel method. I have limited exposure to the workflow system, ...
Posted By General Quarters Feb 26, 2026 03:58:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
ugly approach i generally go to is attaching to runtime and viewing the structure via a breakpoint. other go to is the netlogic cheat sheet repo -------------------------------------------
Posted By General Quarters Feb 20, 2026 02:29:00 PM
Found In Egroup: FactoryTalk Optix
\ view thread
You're close. The important thing to note is that adding paths don't work like shown above. You need to add (1) or (#name) to the expression and it'll give a link to actually bind the thing you're trying to populate. Maybe you're doing this and just throwing the path for reference? A screenshot would ...