internal events are not displayed in trace admin panel

Post here your questions about Actionscript and Java server side extensions development.

Moderators: Lapo, Bax

Post Reply
olafmol
Posts: 3
Joined: 07 Jan 2009, 21:32
Location: Netherlands
Contact:

internal events are not displayed in trace admin panel

Post by olafmol »

Hello,

i am trying to create a java serverside extension, it loads ok and the init and destroy trace info is displayed in the admin trace panel. But i also want to display internal events, and thus i have used this code:

Code: Select all

	public void handleInternalEvent(InternalEventObject ieo)
	{
		// Your code here
	    // Simply print the name of the event that was received
		String evtName = ieo.getEventName();
        trace("Event received: " + evtName);
	}
but nothing is displayed when i connect a client to the server and start joining rooms etc.

Olaf[/quote]
User avatar
Lapo
Site Admin
Posts: 23438
Joined: 21 Mar 2005, 09:50
Location: Italy

Post by Lapo »

Very strange. I am able to see any trace coming from the event handler.
Lapo
--
gotoAndPlay()
...addicted to flash games
Post Reply