<?xml version="1.0" encoding="utf-8"?>
<irc:ircControl 
    xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:irc="dt2.irc.*" 
    layout="absolute" applicationComplete="{initIRC()}" 
    backgroundColor="#333333" title="Tmeister IRC Client :Apollo: " width="800" height="600">
    <mx:Style source="obsidian.css"/>
    <irc:states>
        <mx:State name="main">
            <mx:RemoveChild target="{panel1}"/>
            <mx:AddChild position="lastChild">
                <!-- <mx:Panel x="0" y="0" width="100%" height="100%" layout="absolute" id="mainPanel" backgroundAlpha="0"> -->
                    <mx:TabNavigator x="0" y="0" width="100%" height="100%" id="nav" backgroundAlpha="0" borderThickness="0"/>
                <!-- </mx:Panel>-->
            </mx:AddChild>
        </mx:State>
    </irc:states>
    <mx:Panel width="270" height="170" layout="absolute" horizontalCenter="0" verticalCenter="0" title="IRC Client" id="panel1">
        <mx:TextInput x="50" y="9" width="199" id="server_txt" text="London.UK.eu.Undernet.org"/>
        <mx:Label x="1" y="12" text="Server" fontWeight="bold" textAlign="right" color="#ffffff"/>
        <mx:Label x="14" y="38" text="Port" textAlign="right" fontWeight="bold" color="#ffffff"/>
        <mx:NumericStepper x="52" y="36" value="6667" id="port" width="84" enabled="true" minimum="5000" maximum="7000"/>
        <mx:Label x="15" y="65" text="Nick" fontWeight="bold" color="#ffffff"/>
        <mx:TextInput x="52" y="62" width="197" id="nick_txt"/>
        <mx:Button x="148" y="92" label="Connect" click="{doConnect(event)}"/>
    </mx:Panel>
</irc:ircControl>