Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

MessageClient

Avatar

Level 1
Is it possible to create your own class and have it extend
the MessageClient class? This link
http://www.adobeforums.com/webx/?14@613.7AB1iHHMWmV@.59b56dc2/1
basically describes the same issue I am having. I'm trying to
access the subtopic for a messageClient but they are protected.
They say you can extend the source by extending MessageClient but
when I do that I get an error saying "cannot find symbol"
"constructor MessageClient()".



Could someone please explain how I can extend this class to
access the subtopics?
1 Reply

Avatar

Level 2
Hi,



Your class should read:




quote:



import flex.messaging.MessageClient;

public class MyMessageClient extends MessageClient

{

public MyMessageClient()

{

}

}