Maxim did you by any chance have time to reproduce this or find a workable
solution where flash will not crash? Debugging the crash with the debuf
.swf is not possible since that will crash aswell.

If anyone else reads and found a workable solution to modifying the
position of the chat window while leaving the functions intact please let
me know.


On Tue, Oct 29, 2013 at 3:27 AM, Alexander Brovman <
[email protected]> wrote:

> Thank you Maxim,
>
> I am playing around with the settings in the meantime and looking at the
> logs of the debugger
>
>
> On Tue, Oct 29, 2013 at 12:53 AM, Maxim Solodovnik 
> <[email protected]>wrote:
>
>> Will try to find time to reproduce this
>>
>>
>> On Tue, Oct 29, 2013 at 2:45 AM, Alexander Brovman <
>> [email protected]> wrote:
>>
>> > Additionally i just did this:
>> > Additionally to what i just posted in the mailinglist which i
>> copypasted at
>> > the bottom of this email, i tried changing the settings to:
>> >
>> > <baseTabChatPanel name="_chatPanelStrict" labelid="616"
>> > height="${canvas.height-28}" x="${canvas.width-250}" y="28" width="250"
>> />
>> >
>> >
>> > This seems to have an interesting effect:
>> > http://i.imgur.com/55YZWES.png
>> >
>> > its hiding behind the whiteboard, if i remove the whiteboard from the
>> > presentation its still hiding behind that top bar, either way i assume
>> the
>> > problem right now is the whiteboard and i must find some kind of
>> mechanism
>> > with which i either change the way the whiteboard behaves or how the
>> > chattab is displayed =/
>> >
>> > Any suggestions?
>> >
>> >
>> > On Mon, Oct 28, 2013 at 8:07 PM, Alexander Brovman <
>> > [email protected]> wrote:
>> >
>> > > Well I ran it in debug mode,
>> > >
>> > > using the codechange i specified in the first mail:
>> > >
>> > > <baseTabChatPanel name="_chatPanelStrict" labelid="616"
>> > >        height="200"
>> > >        x="${ parent._sidePanel.width }"
>> > >        y="${ canvas.height - (this.height) -
>> > > ((canvas.currentRoomObj.hideTopBar) ? 0 : 28) }"
>> > >        width="${ canvas.width - parent._sidePanel.width }"
>> > >        isopen="${ !canvas.currentRoomObj.chatOpened }" />
>> > >        <!-- isopen need to be reverted, will be toggled -->
>> > >
>> > > If i want it on the right hand side i assume it needs to be changed to
>> > > something like:
>> > >
>> > >    <baseTabChatPanel name="_chatPanelStrict" labelid="616"
>> > >           height="${canvas.height-28}"
>> > >           x="${canvas.width-250}"
>> > >           y="${canvas.height-28}"
>> > >           width="250" />
>> > >
>> > > The endresult looks like this:
>> > > http://i.imgur.com/cygkDbx.png
>> > >
>> > > And when you open the chatwindow it opens downwards like this:
>> > > http://i.imgur.com/IAnana4.png
>> > >
>> > >
>> > > Additionally if i type something into the chattab and press enter the
>> > > flash client simply crashes The last debug message i see is the
>> > following:
>> > >
>> > >
>> > > send:
>> > >
>> >
>> #main_content/@_content/@inner/flexibleConferenceRoom/@_chatPanelStrict/@content/@_content1
>> > >
>> > >
>> > > sendVarsToMessageWithClient :  «Array(0)#852| []» «Array(11)#853|
>> > ['chat',
>> > > '19:54', 'newtextmessage', 'omadmin', 'lol', 15260551,
>> > > '68611560cda1335707653703793b620b', false, 1, false, [['text', 'lol
>> ']]]»
>> > > chat
>> > >
>> > > startBlink 1
>> > >
>> > > WARNING @modules/conference/tabcontent/chat/chatOutput.lzx≈110:
>> reference
>> > > to undefined property 'length'
>> > >
>> > > addChatHistory userID:  1 false
>> > >
>> > >
>> > >
>> > >
>> > > So at this point i am kind of dumbstruck, ill try changing the x/y
>> > > coordinate settings but i have no doubt that this will mess with the
>> > layout
>> > > aswell, additionally that last error is interesting for the
>> > chatOutput.lzx
>> > > is interesting =/
>> > >
>> > >
>> > > On Mon, Oct 28, 2013 at 5:21 AM, Maxim Solodovnik <
>> [email protected]
>> > >wrote:
>> > >
>> > >> Hard to say,
>> > >>
>> > >> You need to check what other components depends on this panel
>> > >> Try to run client in debug mode
>> > >>
>> > >>
>> > >> On Sat, Oct 26, 2013 at 3:03 AM, Alexander Brovman <
>> > >> [email protected]> wrote:
>> > >>
>> > >> > I have Tested this now... It will Place the Chatbar at the bottom
>> > right
>> > >> > Below the properties bar. Also if you try to open it flash will
>> > crash...
>> > >> >
>> > >> > I'm open for suggestions.
>> > >> >
>> > >> > Sent from my iPhone
>> > >> >
>> > >> > On 25.10.2013, at 19:42, Alexander Brovman <
>> > [email protected]
>> > >> >
>> > >> > wrote:
>> > >> >
>> > >> > > So I hope my understanding here is correct:
>> > >> > >
>> > >> > > If i want to edit the location of the ChatTab to the righthand
>> side
>> > of
>> > >> > the window instead of the bottom of the window for a public
>> conference
>> > >> > room.. i would need to:
>> > >> > >
>> > >> > > open this source file: baseConferenceRoom.LZX and modify the:
>> > >> > >
>> > >> > > <baseTabChatPanel name="_chatPanelStrict" labelid="616"
>> > >> > >        height="200"
>> > >> > >        x="${ parent._sidePanel.width }"
>> > >> > >        y="${ canvas.height - (this.height) -
>> > >> > ((canvas.currentRoomObj.hideTopBar) ? 0 : 28) }"
>> > >> > >        width="${ canvas.width - parent._sidePanel.width }"
>> > >> > >        isopen="${ !canvas.currentRoomObj.chatOpened }" />
>> > >> > >        <!-- isopen need to be reverted, will be toggled -->
>> > >> > >
>> > >> > > If i want it on the right hand side i assume it needs to be
>> changed
>> > to
>> > >> > something like:
>> > >> > >
>> > >> > >    <baseTabChatPanel name="_chatPanelStrict" labelid="616"
>> > >> > >           height="${canvas.height-28}"
>> > >> > >           x="${canvas.width-250}"
>> > >> > >           y="${canvas.height-28}"
>> > >> > >           width="250"
>> > >> > >           isopen="${ !canvas.currentRoomObj.chatOpened }" />
>> > >> > >
>> > >> > > Would this work or would i have to implement some other changes
>> > aswell
>> > >> > in order to ensure there is no interference with the screen
>> sharing or
>> > >> the
>> > >> > whiteboard?
>> > >> > >
>> > >> > >
>> > >> >
>> > >>
>> > >>
>> > >>
>> > >> --
>> > >> WBR
>> > >> Maxim aka solomax
>> > >>
>> > >
>> > >
>> >
>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>

Reply via email to