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

Related Questions

In Flex/Actionscript When writing an on mouseMove event on a Canvas control for example,
I am writing a keyboard event handler in actionscript. I would like to trace
I'm an actionscript developer getting into jquery/javascript development. I have a question regarding event
I want to set a variable from a flash file so that I can
We are writting silverlight3 application, which use Tcp connction. Our project use client server
I'm writting a WPF program.And now i have some problems. There is a Window
I'm writting a software in C# and .NET to manage my store, which has
I am writing an Adobe Air app in HTML/JavaScript and I am trying to
There are lots of texts on how to plan software projects (with user stories,
I need to write model data ( CharField s only) to an XML file

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.