06-07-2023 02:30 AM
for example .this actor has 2 messages, named Method1 Msg.lvcalss and Method2 Msg.lvcalss,Is there a way to obtain them?
06-07-2023 03:23 AM - edited 06-07-2023 03:25 AM
You can use the property node App.AllLibslnAppInstance. I have attached an example of how to find child classes starting from a given parent class. You can easily adapt this to find message classes in a virtual message folder. You can even make your life easier by defining an intermediate class for each actor that inherits from Message.lvclass and changing the inheritance of your actor's messages. In this case, you can use the snippet without changes.
Message.lvclass <- 1. Class Msgs| <- Msg1
| <- Msg2
06-07-2023 03:53 AM
if I build exe,this methods seems to doesn't work..
06-07-2023 03:57 AM - edited 06-07-2023 03:58 AM
Just put an object of all used classes in one vi, actor core for example. Than it should work.
06-07-2023 09:27 AM
I'm not sure how you mean this to work in an EXE, but during this development, this utility is meant to do exactly what you're describing:
https://www.zyahsolutions.com/blog/bowzer-the-browser
https://www.vipm.io/package/zyah_solutions_lib_bowzer_the_browser/
06-07-2023 09:30 AM
06-07-2023 11:28 AM
it seem to use Pre-Build Action VI can achieve my goal,I just want to konw what an actor can do,then I dynamic call message
06-07-2023 09:56 PM
06-08-2023 05:07 AM
I use string as every message‘s private data,these private data read from config files
06-08-2023 06:09 AM
Are you sure you should be using the Actor Framework? Different frameworks make different design choices, and you seem to want to use complicated techniques to undo the choices the AF makes.