Hello,
I am trying to work with Webservices in Flash Builder 4.7. I have imported the WSDL which auto-created classes however it did not create them with the appropriate inharitance. For example I have 2 classes that imported as this
Class A extends Class _Super_A which extends class flash.events.EventDispatcher
Class B extends Class _Super_B which extends class flash.events.EventDispatcher
What should have happened is Class A extends Class B which extends Class _Super_B which extends flash.events.EventDispatcher.
The problem is I am trying to call a get method that requires object B but I need to pass in the data of object A to object B for the call.
I'm pretty new to ActionScript / Flash builder so any assistance would be greatly appreciated. Hope this isnt to vague, not sure how much of the code I can post.