How to catch element moving?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2009-05-26
02:13 PM
- last edited on
‎2023-08-03
05:09 PM
by
Doreena Deng
‎2009-05-26
02:13 PM
I need to catch notification when user move element. But I can not find such event in notification manager.
It's possible to catch element moving?
Thanks
It's possible to catch element moving?
Thanks
Labels:
- Labels:
-
Add-On (C++)
3 REPLIES 3
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2009-05-27 02:53 AM
‎2009-05-27
02:53 AM
Hi equilibrium,
I think you have to attach element observer.
This can be done in the initializing stage of your add-on by
ACAPI_Notify_InstallElementObserver
Ranga
I think you have to attach element observer.
This can be done in the initializing stage of your add-on by
ACAPI_Notify_InstallElementObserver
Ranga
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2009-05-27 11:34 AM
‎2009-05-27
11:34 AM
Sorry, Ranga, but I cann't to catch simple element moving.
I was call ACAPI_Notify_InstallElementObserver in my Initialize function and register APIElementEventHandlerProc:
How I must catch it?
For example, I can change element and receive notification with APIDefaultsChangeHandlerProc (registered with ACAPI_Notify_CatchChangeDefaults).
I was call ACAPI_Notify_InstallElementObserver in my Initialize function and register APIElementEventHandlerProc:
GSErrCode __ACENV_CALL ElementChangeEventNotifyHandler (const API_NotifyElementType *elemType) { ACAPI_WriteReport("ElementChangeEvent", true); return NoError; }I move "Wall" element, but not received notifications.
How I must catch it?
For example, I can change element and receive notification with APIDefaultsChangeHandlerProc (registered with ACAPI_Notify_CatchChangeDefaults).
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2009-05-27 05:23 PM
‎2009-05-27
05:23 PM
Summary: How I can catch action when user select figure and move it to another place?