[Resolved] Open windows comp from trigger

Can anybode tell me, why I cannot open a window from a trigger like the keyboardinChop?
open_window.tox (574 Bytes)

Hello, I doesn’t understand your problem, it works for me!

strange, it worked for me, before I made the TD-Update… I also couldnt trigger the snap-button in a constantCHOP by trying to trigger it with the keybaord right now.

If I use a lagChop inbetween, then the snapping and the opening of the window works. I am running on about 30-40fps. Might this be the reason?

I would suggest using the KeyboardIn DAT and scripting it in the onKey() callback:

def onKey(dat, key, character, alt, lAlt, rAlt, ctrl, lCtrl, rCtrl, shift, lShift, rShift, state, time, cmd, lCmd, rCmd):
	if key == '1' and state == 1:
		op('window1').par.winopen.pulse()
	return

cheers
Markus

There’s a bug in the latest build causing this problem. Will be fixed in next build

1 Like

Looks fixed in 2020:22080! 4/10/2020

1 Like

Good news. Please add [Resolved] to title

@niknaim79 is it fixed for your scenario? Can you add [Resolved] to the title?

Thanks a lot for the fast fix! Works perfect.