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 128655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:40:12+00:00 2026-05-11T05:40:12+00:00

im writting an actionScript class to handle my web service calls. When i retrieve

  • 0

im writting an actionScript class to handle my web service calls. When i retrieve a result i want to call a setter method in my main mxml application. My problem is that i dont know how to access the methods in the actionScript section of my main mxml class from my actionscript class, any ideas?

  • 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-11T05:40:13+00:00Added an answer on May 11, 2026 at 5:40 am

    David is right — while you can access the public members of your Application.mxml object statically and from anywhere in your application, design-wise that’s a bit of a no-no. It’s better to strive for loose coupling between your objects, and the way that’s done in the Flex idiom is generally to extend EventDispatcher and to dispatch events. So for example, your WebService wrapper might look something like this:

    public class MyWrapperClass extends EventDispatcher {     [Event(name='webserviceComplete', type='flash.events.Event')]      public function MyWrapperClass(target:IEventDispatcher=null)     {         super(target);     }      private function handleWebServiceLoadComplete(event:ResultEvent):void     {         dispatchEvent(new Event('webserviceComplete'));     }      public function doWork():void     {         // Load the service, etc., and ultimately call handleWebServiceLoadComplete()...     }        } 

    … and your Main.mxml file like this:

    <mx:Script>     <![CDATA[          private function app_creationComplete(event:Event):void         {             var myWrapper:MyWrapperClass = new MyWrapperClass();             myWrapper.addEventListener('webserviceComplete', mywrapper_webServiceComplete, false, 0, true);             myWrapper.doWork();         }          private function mywrapper_webServiceComplete(event:Event):void         {             // Do the work you would've otherwise done in the public method         }      ]]> </mx:Script> 

    In this case, the end result is the same — completing the web-service load triggers the function in Main.mxml. But notice how mywrapper_webServiceComplete() is declared privately — it’s not called directly by MyWrapperClass. Main.mxml simply subscribes (with addEventListener()) to be notified when MyWrapperClass is finished doing its work, and then does its own work; MyWrapperClass knows nothing about the details of Main.mxml’s implementation, nor does Main.mxml know anything about MyWrapperClass other than that it dispatches a webserviceComplete event, and exposes a public doWork() method. Loose coupling and information hiding in action.

    Good luck!

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

Sidebar

Ask A Question

Stats

  • Questions 198k
  • Answers 198k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I believe they are working on this for CakePHP 1.3,… May 12, 2026 at 7:39 pm
  • Editorial Team
    Editorial Team added an answer Why write your own program? If you're doing this with… May 12, 2026 at 7:39 pm
  • Editorial Team
    Editorial Team added an answer try: {marker=(\d)}(.*?){/marker=(\1)} May 12, 2026 at 7:39 pm

Related Questions

I'm writing a game in Python with the Pygame2 multimedia library, but I'm more
I'm writing an interface that requires classes to implement a clone() method. My naive
I have a swf with four frames. The first frame loads an external class
I'm looking for something similar to the Proxy pattern or the Dynamic Proxy Classes

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.