Debugging Online Error Message

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Debugging Online Error Message

    I get the error below when deploy my application to a web server and test it
    from SOME machines?

    It seems like a generic message.

    Could anyone give me some tips on how to track down what is really causing it?


    TypeError: Error #1009: Cannot access a property or method of a null object
    reference.
    at components::a03_contactInfo/init()
    at components::a03_contactInfo/___a03_contactInfo_Form1_creationComplete()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.core::UIComponent/set initialized()
    at mx.managers::LayoutManager/doPhasedInstantiation()
    at mx.managers::LayoutManager/validateNow()
    at mx.core::UIComponent/commitCurrentState()
    at mx.core::UIComponent/setCurrentState()
    at mx.core::UIComponent/set currentState()
    at components::a02_servingPreference/init()
    at
    components::a02_servingPreference/___a02_servingPreference_Form1_creationComplet
    e()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.core::UIComponent/set initialized()
    at mx.managers::LayoutManager/doPhasedInstantiation()
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/callLaterDispatcher2()
    at mx.core::UIComponent/callLaterDispatcher()


    AwesomeDigital2 Guest

  2. Similar Questions and Discussions

    1. How To Supress Acrobat Error Message And Alert Message
      Is there any way to supress those pop up message? If can't, is there any way to catch it?
    2. Error Message When Sending Message In Windows Mail
      Am I the only one getting an error message when replying to a posted message using Windows Mail. Every time I send a message I get a popup error...
    3. Free photo message board for you to share your photos online!
      Share your photo moments! Check us out at http://www.doodle-board.com. DoodleBoard is a message board style which can be integrated into your...
    4. ASP.NET Debugging error
      Unfortunately there are many things that can cause debugging to break. But the good news is virtually every potential problem is documented along...
    5. annoying message when going online
      Is there a way to get rid of the message that shows up when I go on line? I would like to keep the icon on the task bar but do not want the little...
  3. #2

    Default Re: Debugging Online Error Message

    you certainly try to use an object that is not yet created. Check the order of your events.
    jylaxx Guest

  4. #3

    Default Re: Debugging Online Error Message

    Thanks jylaxx

    If all users saw the message, that would make this easier, but it is only select users.

    Mathias
    AwesomeDigital2 Guest

  5. #4

    Default Re: Debugging Online Error Message

    Do you get remoted data in your initialization process ?
    May be some remote reponses are slow for some of your users and then the
    events are not in the same order for them.
    Did you have a new care reading of your code to check if all object are
    created before using ?
    What are you doing in the a03_contactInfo/init() ?

    jylaxx Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139