ID:162024
 
I'm trying to make a Docking/Floating effect between my map and the Chat window.
 
ChatFloat() winset(src,"Chat","is-pane=false;is-visible=true")
//removes from Child (Called MapChild) causes Chat Box to "Float"

//problem is here
ChatDock()
winset(src, "Chat", "is-pane=true") //Chat needs to be a pane so Child can use it
winset(src, "MapChild", "right=Chat") // this is not working, I think.
src << output("MapChild.right", "Chat Output") // this output "MapChild.right" literally. I'm not sure how to make it output what the MapChild's .right is.



Would I need to expand the height of MapChild before "docking" the Chat? Is there anything else I should do?