[SLVD] create a link. How to see this link in other add-ons?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2017-08-25
11:26 AM
- last edited on
2022-12-06
02:00 PM
by
Daniel Kassai
2017-08-25
11:26 AM
One of my big add-ons has created a connection using the function
ACAPI_Element_Link (...
The function
ACAPI_Element_GetLinks (...
Reports that there is 1 link. Those. everything is working.
Further processing I would like to do in another add-ons
But the function
ACAPI_Element_GetLinks (...
In another add-ons
Informs that the element has no connections.
How can I get data created by one add-on in another addon?
Advise, please.
ACAPI_Element_Link (...
The function
ACAPI_Element_GetLinks (...
Reports that there is 1 link. Those. everything is working.
Further processing I would like to do in another add-ons
But the function
ACAPI_Element_GetLinks (...
In another add-ons
Informs that the element has no connections.
How can I get data created by one add-on in another addon?
Advise, please.
Labels:
- Labels:
-
Add-On (C++)
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2017-08-25 04:41 PM
2017-08-25
04:41 PM
How can I get data created by one add-on in another addon?AFAIK, You can't to do it directly.
Use the Inter Addon communication ( see Communication Manager)
Main addon have to provide some external function for query the link's info.
Other addon have to call this finction to get the info.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2017-09-14 04:49 PM
2017-09-14
04:49 PM
Oleg wrote:Oleg is right, you can only access other add-ons' data if those add-ons provide an internal interface via add-on – add-on communication.How can I get data created by one add-on in another addon?AFAIK, You can't to do it directly.
Use the Inter Addon communication ( see Communication Manager)
Main addon have to provide some external function for query the link's info.
Other addon have to call this finction to get the info.
Best, Akos