Resize docked window

Hello,

     How to resize the docked window on any event. I have a scenario where we need a function like this.

Thanks,
Kartik.

I'm afraid that I do not have enough to go on here. Can you provide some more details about your scenario?

I suggest you take a moment to read this:

http://www.catb.org/esr/faqs/smart-questions.html

2 Likes

Hello @justinedwards.jle

I have a project where I need my docked window to be resized i.e. current window size is 1920 X 36 and I need this to be resized with 1920 X 120. How this can be done?

Thanks,
Kartik I

Please stop putting your questions in those blocks, it's a pain to read...

I have no idea about vision docks, but maybe with a combination of system.gui.findWindow and system.gui.transform ?

1 Like

https://docs.inductiveautomation.com/display/DOC81/Vision+-+The+Window+Object

The basic code will look something like this:

window = system.gui.getParentWindow(event)
height = 120
width = 1920
window.size(height, width)

Thanks @justinedwards.jle I really appreciate.

1 Like

Hi @justinedwards.jle

This was script that helped me

import java.awt.Dimension
window = system.gui.getParentWindow(event)
window.setSize(java.awt.Dimension(300, 600))
window.setMinimumSize(java.awt.Dimension(300, 600))
1 Like