"previous window after inactivity delay" - Possible ?
#1
Hi,
How do to go at the previous window after inactivity delay.
For example I select a song in music library and after 3s of inactivity there is return to the home (or other).
Thanks
Reply
#2
Just thinking out loud but a hidden button in the focused layout of the list with idle condition might work.

PHP Code:
<focusedlayout>
     <
control type="button" id="123">
        <
posx>-30</posx>
        <
posy>-30</posy>
        <
width>1</width>
        <
height>1</height>
        <
label></label>
        <
texturenofocus></texturenofocus>
        <
texturefocus></texturefocus>
        <
onfocus condition="System.IdleTime(3)">close</onfocus>
     </
control>
</
focusedlayout
Reply
#3
Thx, but seem don't work...
<onfocus condition="System.IdleTime(x)">   don't work, even in simple button (without layout) unless x=0  Sad .
Is it really possible to put a button inside focusedlayout ?
Reply
#4
(2018-08-16, 11:25)Dtux Wrote: Is it really possible to put a button inside focusedlayout ?

Yes. That was the solution I arrived at here.

Edit: just tried it. Doesn't work for me either. Makes sense why it wouldn't b/c onfocus is a transition during which the system cannot be idle. Sorry for the noise.
Reply

Logout Mark Read Team Forum Stats Members Help
"previous window after inactivity delay" - Possible ?0