Movie Clip event handler block button event handlers

Hello - really need help!

I have a clip that contains a button. (i.e. my_mc.my_btn)

I have a few event handlers for the clip (my_mc.onRollOut, my_mc.onRelease, etc.) and that they are working correctly.

However, once I added these event handlers to deal with the clip, my breast my quit clip buttons all work together. It's like movie clip managers are overridding the functionality of the button.

How to use movie clip handlers and my buttons inside continue to work?

Help!

You're right, manifestations of the parent are the substitution or fly, the events of the nested children. See this article for ways to deal with this: http://www.senocular.com/flash/tutorials/buttoncapturing/.

Welcome,
blemmo

Tags: Adobe Animate

Similar Questions

  • Movie clip playing backwards using buttons?

    Im trying to create a series of images that scroll acoss the page left and right by using the arrows on each side of the stage. The arrows use the mouse over events to play a clip of the images back and forth.

    There are a few questions that I have. I have a mouse over and events in place to start and stop the clip on the different mouse buttons. However when playing the clip backwards with my current script mouse isn't doing anything just keep clip play backwards to the beginning. Once this has happened no button doesn't do anything.

    Another issue is once the clip played forwards, once altogether and I mouse over the arrow to even again button shortcuts to the beginning of the clip.

    Here's my current scrpit:

    Panel.Stop ();

    leftarrow_btn.addEventListener (MouseEvent.MOUSE_OVER, fl_MouseOverHandler_7);

    leftarrow_btn.addEventListener (MouseEvent.MOUSE_OUT, fl_MouseOutHandler_4);

    function fl_MouseOverHandler_7(event:MouseEvent):void

    {

    Panel.Play ();

    }

    function fl_MouseOutHandler_4(event:MouseEvent):void

    {

    Panel.Stop ();

    }

    rightarrow_btn.addEventListener (MouseEvent.MOUSE_OVER, fl_MouseOverHandler_9);

    rightarrow_btn.addEventListener (MouseEvent.MOUSE_OUT, fl_MouseOutHandler_7);

    function fl_MouseOverHandler_9(event:MouseEvent):void

    {

    panel.addEventListener (Event.ENTER_FRAME, everyFrame);

    }

    function everyFrame(event:Event):void

    {

    panel.prevFrame ();

    }

    function fl_MouseOutHandler_7(event:MouseEvent):void

    {

    Panel.Stop ();

    }

    Help, please!

    Patrick

    use:

    Panel.Stop ();

    leftarrow_btn.addEventListener (MouseEvent.MOUSE_OVER, fl_MouseOverHandler_7);

    leftarrow_btn.addEventListener (MouseEvent.MOUSE_OUT, fl_MouseOutHandler_4);

    function fl_MouseOverHandler_7(event:MouseEvent):void

    {

    Panel.Play ();

    }

    function fl_MouseOutHandler_4(event:MouseEvent):void

    {

    Panel.Stop ();

    }

    rightarrow_btn.addEventListener (MouseEvent.MOUSE_OVER, fl_MouseOverHandler_9);

    rightarrow_btn.addEventListener (MouseEvent.MOUSE_OUT, fl_MouseOutHandler_7);

    function fl_MouseOverHandler_9(event:MouseEvent):void

    {

    panel.addEventListener (Event.ENTER_FRAME, everyFrame);

    }

    function everyFrame(event:Event):void

    {

    panel.prevFrame ();

    }

    function fl_MouseOutHandler_7(event:MouseEvent):void

    {

    panel.removeEventListener (Event.ENTER_FRAME, everyFrame);

    }

  • How to reference clips video parent/child with event handlers?

    I wonder how to reference correctly clips video parent/child, creating event handlers?

    I have a button in a movie clip, which is located in a clip.

    That's what my manager looks like now:

    This. DropMenus.DMSeats.ButtonSeats.addEventListener ("click", SeatsOver);

    The button instance name is ButtonSeats

    It is, I get this:

    TypeError: Error #1009: cannot access a property or method of a null object reference.

    Any idea where I could go wrong?

    Also, if I were to move the listener to drain directly into the clip where the button, how could I make reference to the parent/parent timeline (the main timeline)? Am I right to understand that .This refers only to the current clip?

    Thank you!

    You can place your code in a function that is called when your objects exist.

  • Cannot add event listener to instantiated Movie Clip

    Hi guys,.

    I have a clip that I'm loading dynamically in my scene when a key is pressed.  Then, I would like to add a mouse event listener to the Movie Clip object so it can trigger a function when clicked.  I get an error when you try to do this and cannot find a solution anywhere.

    Here is my code:

    newLayerBT.addEventListener (MouseEvent.CLICK, newLayerBT_CLICK);

    function newLayerBT_CLICK (MouseEvent): void {}

    layerCount = layerCount + 1;

    Make a new object in my class BlankLayerMC

    var newLayer:BlankLayerMC = new BlankLayerMC;

    addChild (newLayer);

    Position the new object

    newLayer.y = prevY + newLayer.height;

    Change the text inside the object in order to take account layerCount courses

    newLayer.layerName.text = 'Layer' + layerCount;

    newLayer.layerNum = layerCount;

    prevY = newLayer.y;

    My problem occurs with this line...

    newLayer.addEventListener (MouseEvent.CLICK, moveSelection);

    layerArray.push (newLayer);

    }

    function moveSelection(e:MouseEvent):void {}

    var t = e.target;

    layerSelectedGraphic.x = t.x;

    t.y = layerSelectedGraphic.y;

    }

    Any help would be greatly appreciated

    change:

    function newLayerBT_CLICK (MouseEvent): void {}

    TO:

    function newLayerBT_CLICK(e:MouseEvent):void {}

  • Do I need to worry about these event handlers in a grid in a perspective of memory leak?

    I'm pretty new to Flex and could not understand how to add event handlers for components of rendering engine inline article since the script file so that I have attached the listnerers just under the elements themselves (for example < mx:Checkbox... change = "outerDocument.doSomething (event)"... / > "):

    <mx:DataGrid id="targetsGrid" width="100%" height="100%" doubleClickEnabled="true" styleName="itemCell"
          headerStyleName="headerRow" dataProvider="{targets}"
          rowHeight="19" fontSize="11" paddingBottom="0" paddingTop="1">
         <mx:columns>
         <mx:DataGridColumn width="78" dataField="@isSelected" headerText="">
         <mx:itemRenderer>
              <mx:Component>
                   <mx:HBox width="100%" height="100%" horizontalAlign="center">
                        <mx:CheckBox id="targetCheckBox" selected="{data.@isSelected == 'true'}" 
                             change="outerDocument.checkChangeHandler(event);"/>
                        <mx:Image horizontalAlign="center" toolTip="Delete" source="@Embed('/assets/icons/delete.png')" useHandCursor="true" buttonMode="true" 
                             click="outerDocument.deleteHandler(event);"/>
                        <mx:Image id="editButton" horizontalAlign="center" toolTip="Edit" source="@Embed('/assets/icons/edit-icon.png')" useHandCursor="true" buttonMode="true" 
                             click="outerDocument.editHandler(event);"/>
                   </mx:HBox>
              </mx:Component>
         </mx:itemRenderer>
         </mx:DataGridColumn>
              <mx:DataGridColumn id="Name" dataField="@collectionDesc" headerText="Name" itemRenderer="com.foobar.integrated.media.ui.component.CellStyleForTargetName"/>
              <mx:DataGridColumn id="Created" width="140" dataField="@createDateTime" headerText="Created"  labelFunction="UiHelper.gridDateFormat" />
         </mx:columns>
    </mx:DataGrid>

    This grid is part of a display which will be destroyed and re-created potentially several times during the session of a user of the application (there's a great dynamism to the app and views are created running). Destroyed by I mean the view that contains the DataGrid above will be is more referenced in some circumstances and a whole new object view is created (which means old datagrid is more referenced and a new one is created).

    I heard that you must clean up event handlers, when they are no longer used, and I know how the view is destroyed, but I do not know how to clean the point added to the renderer components managers event? Is this something that the Flex garbage collector handles effectively?

    In addition, on a somewhat related note, how could I push the element converter to an external component because I need a reference to the datagrid.selectedIndex who, as an external element rendering that I wouldn't have access to this grid containing in my event handlers for the rendering engine option buttons?

    Let's be careful here.  It is true that the cleaning is not necessary, but in the

    provided code snippet, outerDocument is implied to be a .mxml that

    contains the DataGrid control and its components online references because of

    the rendering engine are a function in a script that is not defined in block

    the DataGrid control.

    Although the outerDocument is not destroyed and only the renderers are underway

    created and destroyed, the written code will not cause a leak because the

    rendering made reference to the outerDocument and not the opposite engine.

    And it's because the code in an event handler block is not a request of

    Add an event listener to outerDocument, it is simply a method of a body

    the handler that is attached to an object in the rendering engine.

    What would cause a leak is a call to outerDocument.addEventListener.

  • Document event handlers

    How can I access the Page/Open and Doc/open event handlers using the Javascript Debugger?

    Currently, I can see few related to closing and the economy of the document... Document will save, Document will be narrow, etc.

    He didn't is a button "add" in the Actions of Document dialog box that appears when you click on other tasks when you change a document based on a form.
    Also, I noticed there is a 'SetPageAction' Javascript function that can be used for the Open event handler, but apparently, it needs to be established via the script...

    no GUI equivalent seems to be available.

    It is not an event open explicit document. Code you place in a JavaScript to the document level runs when the document is opened.

    To get the Page open/close events, open the Pages navigation pane, select the page you want, right click > Page Properties > Actions

  • Error #1009 with a movie clip button that is located in a clip

    OK, so I have a button in a movie clip of mc causing a great error problem which continues to repeat.  My code is extremely simple:

    Stop();

    infoGraphicDisparity.addEventListener (MouseEvent.CLICK, disparityGO);

    function disparityGO(event:MouseEvent):void

    {

    MovieClip (this.root) .gotoAndPlay ("disparity");

    }

    I used these types of buttons, a million times, and now CS6 doesn't like it.  Any help is very appreciated.  Thank you

    I have no idea which is MAIN, but...

    stage.addEventListener (Event.ENTER_FRAME, enterFrameHandler);

    Listener is originally the function that seeks to target the HAND at the rate of your file, and she continues to do if you move in the 2 structure.  If there is no HAND in box 2, then it is your source of error.  Try to remove this event listener before going to box 2 and the problem should go away.

  • Create a button in a movie clip for ipad

    I am trying to create a button in a clip for an ipad app (a button next to a slide show, the slide show page is a clip.
    This is the code that I have tried. Button = nextbutton, video clip = artworkmovie. I want just the button to advance the movie clip an image.

    nextbutton.addEventListener (MouseEvent.CLICK, nextClickHandler);

    function nextClickHandler(event:MouseEvent):void

    {

    artworkmovie.nextFrame ();

    }

    It works very well from the scene, but if I have the button 'next' in the film 'artworkmovie' I get the error "Line19 1120 access of undefined property nextbutton. (Line19 is "nextbutton.addEventListener (MouseEvent.CLICK, nextClickHandler);") How can I create a path to the button? I tried artworkmovie.nextbutton and that has not worked.

    Sorry for this one basic question and thank you for your help.

    artworkmovie.nextButton should work.  Make sure you have the name of button assigned to each keyframe in the movieclip.

  • Button inside the Movie Clip

    I need to find a way to make a clip or a button click on, and then lead to a clip that opens a window with data and has a box of x to leave this movie clip. I also need this box WITH the x to be moved together. I can't get the closing work, anyone can please help? !

    See my account for more details please

    //Louisville,CO -------------------------------
    
    louisville_btn.onPress = function () {
         louisville_box.gotoAndPlay("play");
    }
    // DRAG
    louisville_box.onPress = function(){
         startDrag(louisville_box);
    }
    louisville_box.onRelease = louisville_box.onReleaseOutside = function(){
         stopDrag();
    }
    
    louisville_drag.closeBox.onPress = function() {
         startDrag(this._parent);
    };
    
    louisville_drag.closeBox.onRelease = function() {
         stopDrag();
    };
    
    closeBox.onRelease = function() {
         louisville_box.gotoAndStop("stop"); 
         };
    

    Since you will have a lot of cities, buttons boxesand sharing the same code, it is best to put all the code in the main storyline (the first image).

    If you write code at the beginning that refers to an object that is not currently part of the scene (such as a button that is located on the second frame of a movieclip, which has a code stop() on the first picture), this code never reached its target.

    Similar: If you catch a MouseEvent as onRelease at the parent level, the event is not registered for the child.

    Hope that the attachment is what you had in mind.

    Nice graphic btw

  • AS3 MOVIE CLIP HELP BUTTON!

    Hello

    I am a beginner and need help.

    I have several movie clip buttons and everytime my mouse over and out they run perfectly, no problem... but now I want these buttons of movieclip to an image when you click on it, and for that, I don't know what to do!

    Here is the code I have so far for the movie clip buttons

    I would appreciate your help, thank you!

    btn_mc.buttonMode = true;
    btn2_mc.buttonMode = true;
    btn3_mc.buttonMode = true;
    btn4_mc.buttonMode = true;
    btn5_mc.buttonMode = true;
    btn_mc.addEventListener (MouseEvent.ROLL_OVER, onButtonOver);
    btn_mc.addEventListener (MouseEvent.ROLL_OUT, onButtonOut);
    btn2_mc.addEventListener (MouseEvent.ROLL_OVER, onButtonOver);
    btn2_mc.addEventListener (MouseEvent.ROLL_OUT, onButtonOut);
    btn3_mc.addEventListener (MouseEvent.ROLL_OVER, onButtonOver);
    btn3_mc.addEventListener (MouseEvent.ROLL_OUT, onButtonOut);
    btn4_mc.addEventListener (MouseEvent.ROLL_OVER, onButtonOver);
    btn4_mc.addEventListener (MouseEvent.ROLL_OUT, onButtonOut);
    btn5_mc.addEventListener (MouseEvent.ROLL_OVER, onButtonOver);
    btn5_mc.addEventListener (MouseEvent.ROLL_OUT, onButtonOut);

    function onButtonOver(e:MouseEvent):void
    {
    e.currentTarget.gotoAndPlay ("over");
    }

    function onButtonOut(e:MouseEvent):void
    {
    e.currentTarget.gotoAndPlay ("out");
    }

    The function below will work so that a button is, then you need to create separate functions for each button that is clicked, or use a switch statement in a function to take an action based on which button has been clicked using the event.currentTArget to determine which.

    btn_mc.addEventListener (MouseEvent.CLICK, onButtonClick);

    function onButtonClick(e:MouseEvent):void
    {
    gotoAndStop (2);

    }

  • affected by actions movie clip button behavior

    Hello

    I have a movie clip button that I created to provide me with the color interpolation. A label for the upstate, 'more' for the more 'up' State (color interpolation), and then a label of 'out' where I have the interpolation of color back to normal. This set works very well unless I place an action on this button in the timeline panel, for example-

    myBtn_mc.onRelease = function() {}
    loadMovieNum ("swf/movie.swf", 99);
    }

    Can you please explain why this behavior on my movie clip button will not work if an action such as this is placed on it? (not just the high State of tween color)

    Thanks in advance

    Wait a minute.  code assigned to a parent movieclip mouse Manager with intercept all mouse events (what you plan for children).

    to remedy this, code all managers of mouse in the same generation.  That is to say, assign and more frames on the timeline of _root.bio_mc.  then use:

    _root.bio_mc.onRollOver = function() {}
    this.gotoAndPlay ("over");
    }

    _root.bio_mc.onRelease = function() {}
    loadMovieNum ("swf/movie.swf", 99);
    this.gotoAndPlay ("out");
       
    }

    _root.bio_mc.onRollOut = function() {}
    this.gotoAndPlay ("out");
    }

  • stop the cursor buttons movie clip

    I animated movie clips as buttons. When she reaches the point where the cursor is on the button, it disappears. Here is the script that I have on the main timeline:

    news_mc is the instance name of my movie clip button

    news_mc.addEventListener (MouseEvent.CLICK, news page);
    news_mc.addEventListener (MouseEvent.MOUSE_OVER, newsRollOn);
    news_mc.addEventListener (MouseEvent.MOUSE_OUT, newsRollOff);
    news_mc.buttonMode = true;
    function newsRollOn(event:MouseEvent):void {}
    news_mc.gotoAndPlay ("in");
    }

    function newsRollOff(event:MouseEvent):void {}
    news_mc.gotoAndPlay ("out");
    }

    function newsPage(event:MouseEvent):void {}
    gotoAndStop ("news");

    I know that there is something on
    news_mc. Mask =? I don't know if I have, of course, what part of the mask that I use. I have a layer that contains the background of the button (the name of the instance - background) then the 2 layers that form the animated mask - the layer mask contains a copy of the background of the button (instance name - context.2) and then the animation later mask contains a gradient which slides on the button (instance name - Masker).

    What is going on?

    ROLL_OVER and ROLL_OUT rather than mouse_over and _out did the trick!

  • Problem with event handlers

    Hello

    It seems that my event handlers do not work for some reason any. Could someone help me please?

    That's what I do:

    (1) create a simple Java class (with all necessary libraries) and compile to setMiddleName.jar:

    --

    bunch of pre-treat;

    import...

    public class setMiddleName implements {PreProcessHandler}

    public setMiddleName() {}

    Super();

    }

    @Override

    Public Sub initialize (HashMap < String, String > parameters) {}

    }

    @Override

    public EventResult run (long processId, long eventId, orchestration of the Orchestration)

    {

    Parameters HashMap < String, Serializable > = orchestration.getParameters ();

    String middleName = getParamaterValue (settings, "First name");

    If ((middleName == null) | middleName.equals("")) {}

    String firstName = getParamaterValue (settings, "First name");

    middleName = firstName.substring (0, 1);

    orchestration.addParameter ("middle name", middleName);

    }

    return new EventResult();

    }

    private String getParamaterValue (< String, Serializable > HashMap parameters,

    String key) {}

    {if (Parameters.ContainsKey (Key))}

    String value = (parameters.get (key) instanceof ContextAware)? (String) ((ContextAware) settings)

    .get (Key)). GetObjectValue(): parameters.get (key) (string);

    Returns the value;

    }

    else {}

    Returns a null value.

    }

    }

    @Override

    public BulkEventResult run (long arg0, long arg1, arg2 BulkOrchestration) {}

    TODO self-generating method stub

    Returns a null value.

    }

    @Override

    public void offset (long arg0, arg1 is long,

    {AbstractGenericOrchestration arg2)

    TODO self-generating method stub

    }

    @Override

    public cancel Boolean (long arg0, arg1 is long,

    {AbstractGenericOrchestration arg2)

    TODO self-generating method stub

    Returns false;

    }

    }

    --

    (2) create plugin.xml

    --

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < oimplugins xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance ">

    < pluginpoint = "oracle.iam.platform.kernel.spi.EventHandler plugins" >

    < pluginclass = "preprocess.setMiddleName plugin" version = "1.0"

    name = "setMiddleName" / >

    < / plugins >

    < / oimplugins >

    --

    (3) package zip file with the following content:

    --

    /plugin. XML

    /lib/setMiddleName.jar

    --

    and copy it to /oracle/plugins/setMiddleName.zip

    (4) create EventHandlers.xml and put it in /oracle/eventhandlers/metadata/preProcessEH/EventHandlers.xml

    --

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < eventhandlers xmlns =" http://www.Oracle.com/schema/OIM/platform/kernel "" xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi: schemaLocation = " http://www.Oracle.com/Schema/OIM/Platform/kernel orchestration - handlers.xsd" >

    < entity-type of the action handler = "User" operation = "CREATE" name = "setMiddleName" Stadium = "preprocess" order = "1050" sync = "TRUE" / >

    < / eventhandlers >

    --

    (5) change ant.properties:

    --

    WLS. Home=/Oracle/MW/wlserver_10.3/

    IOM. Home = / Oracle/MW/Oracle_IDM1/Server

    Login.config = ${IOM. Home}/config/authwl.conf

    MW. Home = / Oracle/MW

    --

    and call 'Ant f pluginregistration.xml register' and specify the location of setMiddleName.zip. Result: [echo] Plugin version 1.0 reregistered preprocess.setMiddleName, BUILD successfully.

    (6) Edit weblogic.properties:

    --

    wls_servername = oim_server1

    application_name = OIMMetadata

    metadata_from_loc = / oracle/eventhandlers

    --

    and call. / weblogicImportMetadata.sh, which translates as:

    --

    Now to the tree of domainRuntime. It is a tree read-only with DomainMBean as the root.

    For further assistance, use the help (domainRuntime)

    Disconnected from the weblogic server: AdminServer

    End of import of metadata script...

    Leaving WebLogic Scripting Tool.

    --

    7)./PurgeCache.sh call all THE

    (8) restart IOM

    (9) result: the event handler does nothing. I don't have the impression to be called never, I tried to add logging resulting not in what either.

    Using the administration console export tool, I check that the handler is however there (it shows as/metadata/preProcessEH and I can export).

    What I am doing wrong? I forgot something?

    Thank you

    Max

    Hello

    In your EventHandlers.xml

    "http://www.Oracle.com/Schema/OIM/Platform/kernel" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" "xsi: schemaLocation =" "http://www.oracle.com/schema/oim/platform/kernel orchestration - handlers.xsd" > "

    I don't see the class?

    See the example below

    <>

    Class = "Oracle.OIM.extensions.PreProcess.SamplePreprocessExtension"

    entity-type = 'User '.

    operation = "CRΘER."

    name = "SetUserMiddleName".

    Stadium = "pretreatment".

    order = "1000".

    Sync = "TRUE" / >

  • Event handlers

    Hello

    Is there a way by which we can check in the EM console the sequence of event handlers are triggered in IOM 11 GR 1 matter?

    I found a document, but that applies to R2.

    https://www.Google.com/URL?SA=t & RCT = j & q = & ESRC = s & source = Web & CD = 1 & CAD = AJLN uact = 8 & ved = 0CCwQygQwAA & URL=http%3A%2F%2Fdocs.ora...

    See these two documents:

    1. Event handler, you place your order for user entity create/change operations (Doc ID 1302854.1)
    2. How to use Data Tables ORCHEVENTS and ORCHPROCESS to identify which Eventhandlers Ran and what their status of an operation carried out by IOM (Doc ID 1568732.1)

    ~ J

  • Creating ent via API and post processing event handlers

    I have a number of post-processing-event handlers defined for the creation of the organization. They all work fine and do what they need to do when I create an organization via the web interface. However if I create an organization that uses the Java API, managers of events do not run. They are not supposed to run? I think that IOM should handle all the same applications - everywhere where they are generated.

    Here is my example of API:

    Import Thor.API.Exceptions.tcAPlException;
    Import Thor.API.Operations.tcOrganizationOperationslntf;
    import java.util.Hashtable;
    import java.util.HashMap;
    Import javax.security.auth.login.LoginException;
    Import oracle.iam. platform. OIMClient;

    public class test {}
    Public Shared Sub main (string [] args)
    {
    Hashtable env = new HashtableQ;
    approx. put (0IMc1 I ent. jAvA_NAMING_FACTORY_INITIAL, "weblogic.jndi.WLInitiialContextFactory");
    env.put (mpta OIMC]. JAVA_NAMING_PROVIDER_URL, "t3: / / localhost:14000");
    OIMClient oimclient = new olMClient (env);
    try {}
    oimclient. Login ("xelsysadm", args [O] .tocharArrayO); II the password is the only argument
    } catch (System.Exception e)
    System.out.println ("ERROR: connection exception.") Please check your username / password are correct. ») ;
    }
    tcorganizationOperationsintf orgManager = (tcOrganizationOperationsintf.class) oimclient.getservice;
    < String, String > HashMap hmorgDetails = new HashMap < String, String > ();
    hmOrgDetails.put ('Organizations.organizationName', 'org test');
    hmorgDetails.put ('Organizations.Type', 'Branch')
    Try
    {
    orgManager.createOrganization (hmorgDetails);
    } catch (Exception e) {}
    System.out.println (e. getMessage())
    e.printStackTraceQ;
    }
    return;
    }
    }

    and my definition of post processing:
    <? XML version = 'l.O' encoding = "uTF - 8"? >
    < eventhandlers xmlns = "http://www.oracle.com/schema/oim/platform/kernel."
    xmlns: xsi = "http://www.w3.org/2001/xMLschema-instance".
    xsi: schemaLocation = "http://www.oracle.com/schema/oim/platform/kernel%2dorchestrat-jon."
    -hand] ers. XSD">
    <! - custom preprocess event handlers - >
    < entity-type of the action handler = operation 'Organization' = 'CRΘER. '
    Class =' ' corn.corp.AutoCreateRoles
    name = 'Run in creating org'
    Stadium = "post-processing".
    order = "2000".
    Sync = "TRUE" / >

    Try to use OrganizationManager service class in your java code instead of the tcOrganizationOperationsIntf inheritance. Which should trigger the event handler. Recently, I had a problem where using the EntityManager on user has not triggered the eventhandler but only when using the UserManager triggered it.
    It would be possible only when you are using the legacy API, a new orchestration is not produced, and therefore the event handler is not called.

    -Marie

Maybe you are looking for