Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 110805
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:17:06+00:00 2026-05-11T02:17:06+00:00

I’ve recently changed to Mate as a framework for flex. However am running into

  • 0

I’ve recently changed to Mate as a framework for flex. However am running into a few issues. I want to know how to dispatch events from classes generated via the methodInvoker tag.

<resultHandlers>         <MethodInvoker generator='{LoginSuccess}' method='setCurrentUser' arguments='{[resultObject]}'/> 

Then in the class I’d like to dispatch an event.

public function setCurrentUser(calUser:Object):void{         if(calUser != null){             Model.instance.currentUser = calUser as CalUser;             loadOnlineCalendars(Model.instance.currentUser);         }     }      public function loadOnlineCalendars(calUser:CalUser):void{         for(var i:int = 0 ; i<calUser.calConnectors.length; i++){//logic here             dispatchEvent(new CalConnectorEvent(calUser.calConnectors as CalConnector,CalConnectorEvent.LOAD_ONLINE_CALENDAR_EVENT,true));         }     } 

The problem is I can’t seem to be able to catch the event in the eventMap or even in the application root.

If anyone has any experience with Mate, I’d appreciate some pointers. Perhaps I’m doing this all wrong. I just want to get a result from the server – look at the result and depending on the result contact the server again. Should be quite simple.

Event Map:

            <resultHandlers>             <MethodInvoker generator='{LoginSuccess}' method='setCurrentUser' arguments='{[resultObject]}'/>             <ServiceResponseAnnouncer type='result'/>              </resultHandlers>             <faultHandlers>             <ServiceResponseAnnouncer type='fault'/>              </faultHandlers>     </RemoteObjectInvoker> 

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:17:06+00:00Added an answer on May 11, 2026 at 2:17 am

    The way it’s usually done is to inject the event map’s dispatcher into the object:

    <MethodInvoker generator='{MyClass}' method='someMethod' arguments='{[a, b]}'>   <Properties dispatcher='{scope.dispatcher}'/> </MethodInvoker> 

    The inner Properties tag sets properties on the object being created by the MethodInvoker, and the properties are guaranteed to be set before the method is invoked.

    The class obviously needs to have a public property called dispatcher (or whatever name you prefer) for this to work. To dispatch events that you want to listen for in the event map call dispatcher.dispatchEvent(...).

    If the object created by the MethodInvoker will be used more than once, if it’s a manager, say, the common idiom is to create it using an ObjectBuilder is an event handler block that gets triggered by FlexEvent.INITIALIZE:

    <EventHandlers type='{FlexEvent.INITIALIZE}'>   <ObjectBuilder generator='{MyClass}' constructorArguments='{scope.dispatcher}'/> </EventHandlers> 

    In this example the event dispatcher is injected as a constructor argument, but you can use an inner Properties tag just as with MethodInvoker.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.