Taviso's Expose Function problem

Hello there,

I use Taviso’s Expose function, it shows all windows which are on the current page. I would like it to show me all Windows in all pages on the current Desk !

So i have replace the CurrentPage condition by the CurrentDesk but it does nothing, what’s wrong ?

Here the function :

[code]DestroyFunc FvwmExpose
AddToFunc FvwmExpose

  • I AddToMenu FvwmExposeMenu “.: e x p o s e :.” Title
  • I + DynamicPopDownAction DestroyMenu FvwmExposeMenu
  • I All (!Iconic,!Shaded,AcceptsFocus,CurrentDesk)
    PipeRead “echo Raise;
    xwd -silent -id $[w.id] | convert -scale 128 -quality 0 xwd:-
    png:$[FVWM_USERDIR]/icon.exp.$[w.id].png
    && echo AddToMenu FvwmExposeMenu
    %$[FVWM_USERDIR]/icon.exp.$[w.id].png%\’”$[w.name]"\’ WindowID $[w.id] WarpToWindow 50 50
    && echo AddToMenu FvwmExposeMenu \"\" Nop
    || Nop"
  • I Popup FvwmExposeMenu
  • I Exec exec rm -f $[FVWM_USERDIR]/icon.exp.*
    [/code]

The problem you have here, is that in order to get the thumbnail of the windows, you need the windowID – this can only be obtained (without me going into too much detail) if the window is visible – i.e. on the same page.

– Thomas Adam.

Ok, so i can’t do the behaviour i would like, it’s a pity.
Thanks anyway.