I can easily change the height on the chat box in the flash apps area, but it keeps the width the same. Can the width be edited?
I can easily change the height on the chat box in the flash apps area, but it keeps the width the same. Can the width be edited? |
Try to have a look in flash/modules/chat/inc/constants.inc.php file: $aModules = array(
'admin' => array(
'caption' => 'Ray Chat Admin',
'parameters' => array('nick', 'password'),
'js' => array(),
'inline' => false,
'vResizable' => true,
'hResizable' => true,
'reloadable' => true,
'layout' => array('top' => 0, 'left' => 0, 'width' => 800, 'height' => 600),
'minSize' => array('width' => 700, 'height' => 600),
'div' => array()
),
'user' => array(
'caption' => 'Ray Chat',
'parameters' => array('id', 'password'),
'js' => array(),
'inline' => true,
'vResizable' => false,
'hResizable' => false,
'reloadable' => true,
'layout' => array('top' => 0, 'left' => 0, 'width' => "100%", 'height' => 600),
'minSize' => array('width' => 700, 'height' => 600),
'div' => array(),
)
);
Rules → http://www.boonex.com/terms |