List of Contributions

Hakes

Contact Details

Hakes


My Content

1 to 20 of 27 total
Posted By Hakes Aug 19, 2025 02:19:00 PM
Found In Egroup: Advanced Software
\ view thread
Hey, I have some buttons I was thinking of swapping with rectangles because it is easier to modify their border color. However, I noticed rectangles do not have an option for a "MouseClick event" but do have an option for a "MouseUp event." Is there any difference between these two events? Initially ...
Posted By Hakes Aug 13, 2025 10:26:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello, I am trying to change the border color of a toggle button when active. There is no border color property in the toggle button properties and also, changing the default button border color does not affect my toggle button. Any ideas if it is possible to change the toggle border color based on active ...
Posted By Hakes Aug 12, 2025 10:23:00 AM
Found In Egroup: Advanced Software
\ view thread
You can kind of manually do it by linking the model to the object type variables and linking each column to an instance. However, this method will throw errors during run-time about expecting a "non-empty name". If someone knows how to fix that, please let me know. Heres what I have... You ...
Posted By Hakes Jul 28, 2025 11:26:00 AM
Found In Egroup: Advanced Software
\ view thread
Are you able to delete some words and re-run the code? Mine seems to be locked out once I make too many requests.
Posted By Hakes Jul 28, 2025 11:19:00 AM
Found In Egroup: Advanced Software
\ view thread
This code is associated with the error:
Posted By Hakes Jul 28, 2025 10:49:00 AM
Found In Egroup: Advanced Software
\ view thread
Hey, I am trying to use the Google Translate Optix code on GitHub to translate my Optix dictionary into different locales but recently started getting this error: Even if I try to translate a different dictionary with a single word, the error still comes up. Any idea why this may be the case? ...
Posted By Hakes Jul 22, 2025 12:55:30 PM
Found In Egroup: Advanced Software
\ view thread
If I understand correctly, I think that code is for run-time NetLogic. I am trying to create design-time NetLogic that edits the OnMouseClick event in Optix.
Posted By Hakes Jul 22, 2025 08:36:07 AM
Found In Egroup: Advanced Software
\ view thread
I can see why the first message was confusing. To clarify, here is an example... In this case, I want to be able to assign the Dialog variable to an object (in this case TraceDataPopup (type)) using NetLogic.
Posted By Hakes Jul 21, 2025 03:04:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello, I am seeking some assistance with setting a dynamic link to an object in Optix using NetLogic. For example, I want to link a variable to a toggle button object (not a property such as "Active"). To link to a property (i.e.IUAVariable), I can use SetDynamicLink(IUAVariable). However, this does ...
Posted By Hakes Jul 11, 2025 10:42:00 AM
Found In Egroup: Advanced Software
\ view thread
I figured it out. There is a lot of help I found from this GitHub repository: NetLogic_CheatSheet/pages/dynamic-links.md at main · FactoryTalk-Optix/NetLogic_CheatSheet · GitHub. Specifically, the example on "Dynamic Link to a single element of array variable" and "Dynamic Link to a bit indexed word" ...
Posted By Hakes Jul 11, 2025 10:40:00 AM
Found In Egroup: Advanced Software
\ view thread
I figured it out! I needed to change Find to FindObject and also needed to make sure that there was a value in the text property so that it existed. If it is empty it cannot be found by the NetLogic.
Posted By Hakes Jul 11, 2025 10:28:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, I am trying to access the text property of my text box but my code is returning null. Any idea why? I can access the text box itself, just not the "text" variable.
Posted By Hakes Jul 11, 2025 09:00:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, I am trying to link a number of Optix variables to tags using Net Logic. However, I need to set the link at a specific bit index (not at the tag itself). I understand that in Optix I may use ".#" to index a SINT, but can I create the same dynamic link in NetLogic even though it doesn't consider ...
Posted By Hakes Jul 03, 2025 09:54:00 AM
Found In Egroup: Advanced Software
\ view thread
I was able to set the dynamic link using the following code... As you may notice, it is the same setup as my first post. The only difference is the location in the code. It is important to put it after the objects are added to Optix (not just in the Information Model), so that the NetLogic can properly ...
Posted By Hakes Jul 03, 2025 09:49:00 AM
Found In Egroup: Advanced Software
\ view thread
Thanks for your help. I ended up just creating a new type and modified it. Then, after instantiating it twice, I modified each instance with their unique properties.
Posted By Hakes Jul 01, 2025 12:29:00 PM
Found In Egroup: Advanced Software
\ view thread
Thanks for the reply. However, I want to duplicate an instance, not simply create an object based on a type. For example, say there is an object type called "LED" that represents a red circular LED. First, I created an LED using the notation you described above, changing the color to blue. Then, I want ...
Posted By Hakes Jul 01, 2025 12:23:00 PM
Found In Egroup: Advanced Software
\ view thread
So, if understand correctly, to link five toggle buttons each to the visibility a particular ioGraphic, I must create five global variables in Optix. Is that correct?
Posted By Hakes Jul 01, 2025 11:17:00 AM
Found In Egroup: Advanced Software
\ view thread
Hey, Any idea how to copy/duplicate an Optix object in Net Logic? I want to create an object in Net Logic based off a type (from Optix), modify it, copy it, make more changes (only applied to copy) and insert both objects into my Optix application.
Posted By Hakes Jul 01, 2025 09:50:00 AM
Found In Egroup: Advanced Software
\ view thread
I have been setting dynamic links using browse paths as shown below… This is inflexible because changes to the file path destroy the dynamic link. Instead, I want to be able to use the SetDynamicLink feature to create the dynamic link as shown below… However, this yields a link that does not update ...
Posted By Hakes Jun 30, 2025 03:59:00 PM
Found In Egroup: Advanced Software
\ view thread
Ignore this message.